Shell echo命令介紹
的 echo 指令與 PHP 的 echo 指令類似,都是用於字串的輸出。 |
Shell 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 is a test"
輸出結果:
OK! It is a test
5.顯示不換行
#!/bin/sh echo -e "OK! \c" # -e 開啟轉義 \c 不換行 echo "It is a test"
輸出結果:
OK! It is a test
6.顯示結果定向至檔案
echo "It is a test" > myfile
7.原樣輸出字串,不進行轉義或取變數(用單引號)
echo '$name\"'
輸出結果:
$name\"
8.顯示命令執行結果
echo `date`
注意: 這裡使用的是反引號 `, 而不是單引號 '。
結果將顯示當前日期
Thu Jul 24 10:08:46 CST 2014
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2662603/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 『忘了再學』Shell基礎 — 3、echo命令的介紹與使用
- Linux命令- echo、grep 、重定向、1>&2、2>&1的介紹Linux
- shell介紹
- linux Shell 命令列-01-intro 入門介紹Linux命令列
- MongoDB shell 介紹MongoDB
- Shell程式設計 --- Shell介紹程式設計
- shell 語法介紹
- Shell 陣列介紹陣列
- Spring Shell入門介紹Spring
- installer 命令介紹
- Shell Step by Step (4) —— Cron & Echo
- Shell學習【printf與echo】
- Linux Bash Shell 指令碼入門(3)——Linux常用命令介紹Linux指令碼
- Shell指令碼介紹與使用指令碼
- echo命令詳解
- Linux xargs命令介紹Linux
- Linux useradd 命令介紹Linux
- Shell中的字串擷取介紹字串
- Linux shell 指令碼基礎介紹Linux指令碼
- Linux重啟命令介紹Linux
- SVN命令列使用介紹命令列
- 簡單介紹 ldd 命令
- shell程式設計–bash變數介紹程式設計變數
- Hadoop框架:HDFS簡介與Shell管理命令Hadoop框架
- Tmux 終端命令列介紹UX命令列
- 【Redis】常用命令介紹Redis
- netcat 命令介紹及使用示例
- 【Linux】jq 命令介紹和使用Linux
- Linux常用命令介紹Linux
- RPM常用命令介紹
- Hadoop進階命令使用介紹Hadoop
- Linux 關機命令介紹shutdownLinux
- linux基本命令介紹(二)Linux
- linux基本命令介紹(一)Linux
- Zookeeper 四字命令介紹
- sftp常用命令介紹FTP
- Linux分享筆記:shell終端的介紹Linux筆記
- Linux基礎命令:echo的使用Linux