arch-automated-installer/system-setup.sh

14 lines
197 B
Bash
Raw Normal View History

2024-06-24 16:55:52 +00:00
#!/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