linux shell cat 命令

來源:互聯網
上載者:User

標籤:cloud   顯示   標準輸出   接下來   html   標準   行號   .com   輸出   

cat:查看檔案的內容、串連檔案、建立一個或多個檔案和重新導向輸出到終端或檔案  用法:cat [選項] [檔案]

1. $ cat hello.txt

顯示hello.txt文字檔中的內容

 

2. $ cat -n file

-n選項,可以顯示檔案的內容和行號

 

3. $ cat -b file

-b選項,與-n類似,但只標識非空白行的行號(空白行仍顯示)

 

4. $ cat -e file

-e選項,將在每一行的末尾顯示“$”字元,在需要將多行內容轉換成一行時非常有用。

 

5. $ cat

只輸入cat命令的話,它只是接收標準輸入的內容並在標準輸出中顯示,所以在輸入一行並按斷行符號後會在接下來的一行顯示相同的內容。

如:$ cat

hello world!

hello world!

$

重新導向的話:

$ cat >hello

hello world!

              (ctrl+D按鍵組合退出,輸入的內容 hello world! 會寫入到檔案hello中)

$ cat hello

hello world!

$

重新導向操作符有兩個: >和>>,前者是內容覆蓋,後者是在檔案的最後追加。

 

6. 串連多個檔案的內容到一個新檔案

$ cat test test1 > test2

$ cat test2

結果將顯示test和test1中的內容。

參考連結:http://www.cnblogs.com/cloudPython/p/4893100.html

linux shell cat 命令

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.