1.顯示檔案內容 直接 cat filename
[root@bogon cat_test]# cat file2
this is a test of cat
this file's name is file2
2.顯示檔案內容,對非空白行編碼 cat -b filenme
[root@bogon cat_test]# cat -b file1
1 this is for test of cat
2 this filename is file1
3 last line
3.對於比較大的檔案,可以採用 cat filename |more
4.建立檔案 cat >newfilenamefile5< knowledge is power
這個例子建立了乙個file5的檔案,並提示要寫入的內容,直到遇到eof(linux下面的eof是通過ctrl+d輸入的)。
5.向已有的檔案中增加內容 cat >>existingfile>file5< this a new content added
同樣eof結束輸入。
6.將幾個檔案聯結輸入到乙個新檔案 cat filename1 filename2 >filename3
7.將幾個檔案聯結追加到乙個現有的檔案中 cat filenam1 filename2 >>filename3
linux 中cat的用法
1.顯示檔案內容 直接 cat filename root bogon cat test cat file2 this is a test of cat this file s name is file2 2.顯示檔案內容,對非空白行編碼 cat b filenme root bogon cat t...
Linux中cat命令的使用
cat concatenate 的縮寫 命令是 linux unix 作業系統中最常用的命令之一。cat命令允許我們建立單個或多個檔案,檢視檔案的內容,連線檔案並在終端或檔案中重定向輸出。cat 命令將檔案內容顯示到螢幕上。cat 命令將標準輸入連線到標準輸出。當沒有檔案或者檔案是 那麼它讀取標準輸...
Linux中tail與cat的區別
一 tail 功能 顯示指定檔案的後若干行。語法 tail num 引數 檔案 tail命令中各個選項的含義為 num 從第num行以後開始顯示。num 從距檔案尾num行處開始顯示。如果省略num引數,系統預設值為10。l 以文字行為num的計數單位。與引數選項 num或 num選項同時使用時,n...