Judulnya mengatakan itu semua. Setelah saya diminta, saya ingin ya dan tidak untuk masing-masing memanggil fungsi.
# Check to see if you ran this script before
echo
echo I need to know if this is your first time...
while true; do
read -p "" yn
case $yn in
[Yy]* ) new;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
# Define function as new
new (){
clear; echo As you are new, I will need a few things.
}
# Define function as root
root(){
echo "$(tput setaf 6)Hello, world$(tput sgr0)"
}
echo
Jika pengguna memasukkan "y", saya ingin skrip memanggil fungsi "baru". Seperti sekarang, skrip akan mencoba menjalankan program yang disebut "baru" yang tidak ada. LOL. Terima kasih
new()
?