Add: system setup script
This commit is contained in:
parent
66760f6da0
commit
d3535f623e
13
system-setup.sh
Executable file
13
system-setup.sh
Executable 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
|
Loading…
Reference in a new issue