Linux中的15個‘echo’ 命令例項
echo是一種最常用的與廣泛使用的內建於Linux的bash和C shell的命令,通常用在指令碼語言和批處理檔案中來在標準輸出或者檔案中顯示一行文字或者字串。
echo命令的語法是:
echo [選項] [字串]
1. 輸入一行文字並顯示在標準輸出上
$ echo Tecmint is a community of Linux Nerds
會輸出下面的文字:
Tecmint is a community of Linux Nerds
2. 輸出一個宣告的變數值
比如,宣告變數x並給它賦值為10。
$ x=10
會輸出它的值:
$ echo The value of variable x = $x The value of variable x = 10
3. 使用‘\b‘選項
‘-e‘後帶上'\b'會刪除字元間的所有空格。
注意: Linux中的選項‘-e‘扮演了轉義字元反斜線的翻譯器。
$ echo -e "Tecmint \bis \ba \bcommunity \bof \bLinux \bNerds" TecmintisacommunityofLinuxNerds
4. 使用‘\n‘選項
‘-e‘後面的帶上‘\n’行會在遇到的地方作為新的一行
$ echo -e "Tecmint \nis \na \ncommunity \nof \nLinux \nNerds" Tecmint is a community of Linux Nerds
5. 使用‘\t‘選項
‘-e‘後面跟上‘\t’會在空格間加上水平製表符。
$ echo -e "Tecmint \tis \ta \tcommunity \tof \tLinux \tNerds" Tecmint is a community of Linux Nerds
6. 也可以同時使用換行‘\n‘與水平製表符‘\t‘
$ echo -e "\n\tTecmint \n\tis \n\ta \n\tcommunity \n\tof \n\tLinux \n\tNerds" Tecmint is a community of Linux Nerds
7. 使用‘\v‘選項
‘-e‘後面跟上‘\v’會加上垂直製表符。
$ echo -e "\vTecmint \vis \va \vcommunity \vof \vLinux \vNerds" Tecmint is a community of Linux Nerds
8. 也可以同時使用換行‘\n‘與垂直製表符‘\v‘
$ echo -e "\n\vTecmint \n\vis \n\va \n\vcommunity \n\vof \n\vLinux \n\vNerds" Tecmint is a community of Linux Nerds
注意: 你可以按照你的需求連續使用兩個或者多個垂直製表符,水平製表符與換行符。
9. 使用‘\r‘選項
‘-e‘後面跟上‘\r’來指定輸出中的回車符。(LCTT 譯註:會覆寫行開頭的字元)
$ echo -e "Tecmint \ris a community of Linux Nerds" is a community of Linux Nerds
10. 使用‘\c‘選項
‘-e‘後面跟上‘\c’會抑制輸出後面的字元並且最後不會換新行。
$ echo -e "Tecmint is a community \cof Linux Nerds" Tecmint is a community @tecmint:~$
11. ‘-n‘會在echo完後不會輸出新行
$ echo -n "Tecmint is a community of Linux Nerds" Tecmint is a community of Linux Nerds@tecmint:~/Documents$
12. 使用‘\a‘選項
‘-e‘後面跟上‘\a’選項會聽到聲音警告。
$ echo -e "Tecmint is a community of \aLinux Nerds" Tecmint is a community of Linux Nerds
注意: 在你開始前,請先檢查你的音量設定。
13. 使用echo命令列印所有的檔案和資料夾(ls命令的替代)
$ echo * 103.odt 103.pdf 104.odt 104.pdf 105.odt 105.pdf 106.odt 106.pdf 107.odt 107.pdf 108a.odt 108.odt 108.pdf 109.odt 109.pdf 110b.odt 110.odt 110.pdf 111.odt 111.pdf 112.odt 112.pdf 113.odt linux-headers-3.16.0-customkernel_1_amd64.deb linux-image-3.16.0-customkernel_1_amd64.deb network.jpeg
14. 列印製定的檔案型別
比如,讓我們假設你想要列印所有的‘.jpeg‘檔案,使用下面的命令。
$ echo *.jpeg network.jpeg
15. echo可以使用重定向符來輸出到一個檔案而不是標準輸出
$ echo "Test Page" > testpage ## Check Content avi@tecmint:~$ cat testpage Test Page
echo 選項列表
選項 | 描述 |
-n | 不輸出末尾的換行符。 |
-e | 啟用反斜線轉義。 |
\b | 退格 |
\\ | 反斜線 |
\n | 新行 |
\r | 回車 |
\t | 水平製表符 |
\v | 垂直製表符 |
就是這些了,不要忘記在下面留下你的反饋。
via: http://www.tecmint.com/echo-command-in-linux/
作者:Avishek Kumar 譯者:geekpi 校對:wxy
相關文章
- 15個Linux Grep命令使用例項(實用、常用)Linux
- Linux 中的 JQ 命令使用例項Linux
- Linux中ip命令的使用例項Linux
- Linux 中 ss 命令的使用例項Linux
- Linux中的basename命令使用例項Linux
- Linux中head命令例項Linux
- Linux中printf命令使用例項Linux
- Linux 的”sort”命令的七個有趣例項Linux
- Linux 中命令連結操作符的十個最佳例項Linux
- Linux系統中的basename命令使用例項Linux
- Linux命令:grep命令AND、OR、NOT例項Linux
- linux echo命令的-n、-e兩個引數Linux
- Linux系統中head命令例項Linux
- Linux中的15個基本‘ls’命令示例Linux
- Linux下echo命令的用法Linux
- 每天一個linux命令:echo與viLinux
- Linux基礎命令:echo的使用Linux
- Tee命令的幾個使用例項
- Linux中執行多個MySQL例項LinuxMySql
- findmnt 命令的八個應用例項
- Linux 中 sort 命令的14個有用的範例(一)Linux
- Linux中介紹who命令例項Linux
- Linux系統中的lsmod、lsof、lspci、lsscsi命令及例項Linux
- echo命令
- RMAN Crosscheck 和 Delete 命令的 2 個例項ROSdelete
- RMAN Crosscheck 和 Delete 命令的2個例項ROSdelete
- 如何區分例項化網格中的每個例項
- 每天一個 Linux 命令(15):tail 命令LinuxAI
- cut命令的使用例項
- Linux 中grep命令中 -P選項的作用Linux
- 分享本年度最佳的15個 Photoshop 例項教程
- Linux 中的 fork() 函式例項解析Linux函式
- 一個例項中,多個synchronized方法的呼叫synchronized
- linux中sleep詳解例項Linux
- linux下find,xargs命令詳解和例項Linux
- Linux系統抓包命令tcpdump使用例項LinuxTCP
- linux shell 中 printf 與 echo的區別Linux
- echo命令詳解