save point

This commit is contained in:
Paul 2023-09-19 17:24:21 -05:00
parent b63edea4a5
commit bacf64dc22
6 changed files with 57 additions and 7014 deletions

24
restore.bash Normal file
View file

@ -0,0 +1,24 @@
#!/bin/bash
function cprint () {
color="$1"
shift
echo "$(tput setaf $color)$*$(tput sgr0)"
}
function mprint (){
echo " $1 - $2"
}
function incorrect_selection() {
cprint 1 "Incorrect selection! Try again."
}
function press_enter() {
echo ""
cprint 3 "Press Enter to continue "
read
clear
}