shell程式設計練習題

2021-10-25 22:20:22 字數 374 閱讀 1299

g)

echo "she is a girl" ;;

g) echo "she is a girl" ;;

b) echo " he is a boy" ;;

b) echo " he is a boy" ;;

*) echo i dont know ;;

esac

注:此處echo輸出的內容最好用雙引號引起來(雖然官方手冊說可以不用雙引號,但在本系統centos 6.8 中如果不用雙引號引起來的話會報錯)

與上面的 if 語句相比,case語句還是簡單的多了。以上的就是我在練習shell程式設計中遇到的問題,這篇部落格也是單純記錄一下自己遇到的語法上的問題。

程式設計練習題

程式student create student studs,int n student 是乙個結構型別,包含姓名 成績和指標域。studs 陣列中儲存了n個 student 記錄。create 函式的功能是編寫根據 studs 陣列建立乙個鍊錶,鍊錶中結點按成績降序排列,函式返回煉表頭指標。inc...

shell指令碼練習題

bin bash 寫乙個指令碼 1.設定變數file的值為 etc passwd 2.依次向 etc passwd中的每個使用者問好,並且說出對方的id是多少 形如 hello,root,your uid is 0.file etc passwd count wc l cut f1 d for i ...

shell指令碼練習題

bin bash echo 九九乘法表 注意 之間不能有空格 加減乘除的格式 還有轉義字元 ne for i 1 i 9 i i 1 do for j 1 j i j j 1 do result i j echo ne i j result t done echo done bin bash num...