Add: system setup script

This commit is contained in:
Rodolfo 2024-06-25 00:55:52 +08:00
parent 66760f6da0
commit d3535f623e

13
system-setup.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
APT_CMD=$(which apt-get)
PACMAN_CMD=$(which pacman)
if [[ ! -z $APT_CMD ]]; then
echo "Debian"
# Set up sudo
echo ""
elif [[ ! -z $PACMAN_CMD ]]; then
echo "Arch"
fi