Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
while true
do
# (1) prompt user, and read command line argument
read -p "Is this a Backup, Restore or Cancel:? " answer
# (2) handle the input we were given
case $answer in
[bB]* ) fsarchiver backup command goes here
echo "Okay, Backup is done!."
break;;
else
case $answer in
[rR]* ) fsarchiver restore command goes here
echo "Okay, Restore is done!."
break;;
[cC]* ) exit;;
* ) echo "Dude, just enter B, R or C, please.";;
esac
done