Shell echo指令
Shell 的 echo 指令與 PHP 的 echo 指令類似,都是用於字串的輸出。指令格式:
echo string
您可以使用echo實作更複雜的輸出格式控制。
1.顯示普通字串:
echo "It is a test"
這裡的雙引號完全可以省略,以下指令與上面實例效果一致:
echo It is a test
2.顯示轉義字元
echo "\"It is a test\""
結果將會是:
"It is a test"
同樣,雙引號也可以省略
3.顯示變數
##read 指令從標準輸入讀取一行,並且把輸入行的每個欄位的值指定給shell 變數#!/bin/sh read name echo "$name It is a test"以上程式碼儲存為test.sh,name 接收標準輸入的變量,結果將是:
[root@www ~]# sh test.sh OK #标准输入 OK It is a test #输出4.顯示換行
echo -e "OK! \n" # -e 开启转义
echo "It it a test"
輸出結果:OK! It it a test5.顯示不換行
#!/bin/sh
echo -e "OK! \c" # -e 开启转义 \c 不换行
echo "It is a test"
輸出結果:OK! It is a test6.顯示結果導向至檔案
echo "It is a test" > myfile
7.原樣輸出字串,不進行轉義或取變數(用單引號)echo '$name\"'
輸出結果:$name\"8.顯示指令執行結果
echo `date`
結果將顯示目前日期Thu Jul 24 10:08:46 CST 2014