This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
color=`tput setaf 2` | |
reset=`tput sgr0` | |
echo "${color}Script started, this script uses apt instead of apt-get${reset}" | |
#run apt update first | |
sudo apt update |