我正在學習在Shell中製作小程序,並且正在研究如何定義使用系統計算器(bc -l)的函數。我會告訴我想要做的事:Unix Shell腳本函數
#!/bin/bash
square(){
I need help here!
}
cube(){
I need help here!
}
rectangle(){
I need help here!
}
exit(){
help
}
I need help here!
echo "Little program that computes the following:"
echo "a) Surface of a square"
echo "b) Volume of a cube"
echo "c) Surface of a rectangle"
echo "e) exit"
echo "Choose the option you want to compute"
read answer
if [ $respuesta == "a" ]
then echo "What's the side of the square"
read l`
該行我現在該怎麼calll我的功能「吃」用戶的答案,然後顯示計算後不要。事情變得最糟糕,因爲在計算之後,我必須詢問用戶他是否想繼續或退出。如果有人能幫助我,我將非常感激。對不起我的英語。我不是母語的人。
你可以像這樣調用你的函數:square – tinySandy 2014-12-06 01:48:21