最佳答案
以这段代码为例。假设它是一个 HTML/text 文件,如果我想知道 echo
出现的总次数,我如何使用 bash?
new_user()
{
echo "Preparing to add a new user..."
sleep 2
adduser # run the adduser program
}
echo "1. Add user"
echo "2. Exit"
echo "Enter your choice: "
read choice
case $choice in
1) new_user # call the new_user() function
;;
*) exit
;;
esac