1.如何向腳本傳遞參數(shù)?
舉例:顯示參數(shù)內(nèi)容
傳參: ./show.sh a
腳本內(nèi)容: #!/bin/bash echo $1
2.如何用shell腳本寫(xiě)一個(gè)函數(shù)?
#!/bin/bash function example { echo "Hello world!" }
3.shell 腳本如何獲取輸入的值 ?
a) 通過(guò)參數(shù) ./script param1 param2
b) 通過(guò) read 命令 read -p "please input: " desthost Echo $desthost