1. 程式人生 > >每天一個linux命令(10):cat

每天一個linux命令(10):cat

1、命令簡介

cat (concatenate,連線)命令將[檔案]或標準輸入組合輸出到標準輸出,如果沒有指定檔案,或者檔案為"-",則從標準輸入讀取

2、用法

cat [選項]... [檔案]... 

3、選項

-A, --show-all           等於-vET
-b, --number-nonblank    對非空輸出行編號
-e                       等於-vE
-E, --show-ends          在每行結束處顯示"$"
-n, --number             對所有行編號,包括空行
-s, --squeeze-blank 壓縮多行空行為一空行 -t 與-vT 等價 -T, --show-tabs 將跳格(TAB)字元顯示為^I -u (被忽略) -v, --show-nonprinting 使用^ 和M- 引用,除了LFD和 TAB 之外 --help 顯示此幫助資訊並退出 --version 顯示版本資訊並退出

4、示例

示例1:顯示檔案內容
[[email protected]
~]# cat test1.log 2011 2012 2013
示例2:顯示檔案內容及行號
[[email protected] ~]# cat -b test1.log 
     1    2011
     2    2012
     3    2013


     4    2014
     5    2015
[[email protected] ~]# cat -n test1.log 
     1    2011
     2    2012
     3    2013
     4    
     5    
     6
2014 7 2015 [[email protected] ~]# cat -s test1.log 2011 2012 2013 2014 2015 [[email protected] ~]# cat -ns test1.log 1 2011 2 2012 3 2013 4 5 2014 6 2015
示例3:-T選項
[[email protected] ~]# cat -T test1.log 
2011
2012
2013


^I行前面為tab
2014

2015
示例4:順序連線兩個檔案log1,log2 ,並將結果輸出到log3
[[email protected] ~]# cat test1.log  test2.log >test3.log
示例5:將標準輸入的內容定向輸出到檔案
[[email protected] ~]# cat >test4.log
按ctrl+D結束輸入
or EOF(End Of File)
[[email protected] ~]# cat >log.txt <<EOF
> Hello
> World
> Linux
> PWD=$(pwd)
> EOF
[[email protected] test]# ls -l log.txt 
-rw-r--r-- 1 root root 37 10-28 17:07 log.txt
[[email protected] test]# cat log.txt 
Hello
World
Linux
PWD=/opt/soft/test
示例6:tac (反向列示)
[[email protected] ~]# cat test2.log 
2016
2017
2018
[[email protected] ~]# tac test2.log 
2018
2017
2016

相關推薦

每天一個linux命令(10):cat

1、命令簡介 cat (concatenate,連線)命令將[檔案]或標準輸入組合輸出到標準輸出,如果沒有指定檔案,或者檔案為"-",則從標準輸入讀取。 2、用法 cat [選項]... [檔案]... 3、選項 -A, --show-all 等於-v

每天一個linux命令(11):cat命令

部分 ron linu mv命令 平臺 linux下 一個 介紹 inux 版權聲明更新:2017-05-15博主:LuckyAlan聯系:[email protected]/* */聲明:吃水不忘挖井人,轉載請註明出處! 1 文章介紹 本文介紹了Linux下面

每天一個Linux命令】25. 檢視檔案命令(cat/more/less/tail/tac/nl/od)

linux中檢視檔案的命令如下: cat: 由第一行開始顯示檔案內容 tac: 從最後一行開始顯示,可以看出 tac 是 cat 的反向顯示! nl: 顯示的時候,隨便輸出行號! more: 一頁一頁的顯示檔案內容less 與 more 類似,但是比 more 更好的是,他

每天一個Linux命令——cat命令

Linux命令:CAT使用許可權:所有使用者(即root帳號和所有普通帳號)使用方法:cat [引數] 檔名說明:cat 是一個文字檔案檢視和連線工具。檢視一個檔案的內容,用cat比較簡單,就是cat 後面直接接檔名,如cat linuxyw.txtcat --help可以檢

每天一個linux命令8之grep高級篇

表達式 大寫 world exp 大寫字母 重復數 tools href 反向 1語法 grep -[acinv] ‘搜索內容串‘ filename-a 以文本文件方式搜索-c 計算找到的符合行的次數-i 忽略大小寫-n 順便輸出行號-v 反向選擇,即找 沒有搜索

每天一個linux命令(16):tail命令

nvi 系統 strong 維基百科 ron .com linux tro 聯系 版權聲明更新:2017-05-20博主:LuckyAlan聯系:[email protected]/* */聲明:吃水不忘挖井人,轉載請註明出處! 1 文章介紹 本文介紹了Linu

每天一個linux命令(9):cp命令

系統 lin 維基 介紹 參考 vip 聲明 com 開發平臺 版權聲明更新:2017-05-13博主:LuckyAlan聯系:[email protected]/* */聲明:吃水不忘挖井人,轉載請註明出處! 1 文章介紹 本文介紹了Linux下面的cp命令。

【轉載】每天一個Linux命令

mkdir 命令 結構 oca archive mic post rmdir 命令 每天 sof 每天一個linux命令(1) : ls 命令 每天一個linux命令(2) : cd 命令 每天一個linux命令(3) : pwd 命令 每天一個linux命令(4)

每天一個liunx命令10之nohup和xargs

add art .sh colors cin bsp sans color snap p.MsoNormal,li.MsoNormal,div.MsoNormal { margin: 0cm; margin-bottom: .0001pt; text-align: just

每天一個Linux命令001——ls

簡單 relink rect sql 目錄 print logs apach 我只 聯想記憶: ls - list directory 語法:   ls [OPTION]... [FILE]...   說明:ls是命令,OPTION是選項例如-a、-l,FIL

每天一個linux命令

文件和目錄屬性 vmstat命令 find命令 性能 參考 url http 目錄 standard 開始詳細系統的學習linux常用命令,堅持每天一個命令,所以這個系列為每天一個linux命令。學習的主要參考資料為:   1.《鳥哥的linux私房菜》   2.http:

每天一個linux命令(4):mkdir命令

指定位置 cnblogs 同名 parent --help pos uri 不存在 必須 linux mkdir 命令用來創建指定的名稱的目錄,要求創建目錄的用戶在當前目錄中具有寫權限,並且指定的目錄名不能是當前目錄中已有的目錄。 1.命令格式: mkdir [選

每天一個linux命令(5):rm 命令

每天 幫助信息 rbo 總計 com 刪除 強行 高度 linux中 昨天學習了創建文件和目錄的命令mkdir ,今天學習一下linux中刪除文件和目錄的命令: rm命令。rm是常用的命令,該命令的功能為刪除一個目錄中的一個或多個文件或目錄,它也可以將某個目錄及其下的所有文

每天一個linux命令(13):less 命令

文件中 參數 使用 ech height 查看進程 str idt 目錄 less 工具也是對文件或其它輸出進行分頁顯示的工具,應該說是linux正統查看文件內容的工具,功能極其強大。less 的用法比起 more 更加的有彈性。在 more 的時候,我們並沒有辦法向前面翻

每天一個linux命令(18):locate 命令

一次 clu ado 模式 pda -o gic style art locate 讓使用者可以很快速的搜尋檔案系統內是否有指定的檔案。其方法是先建立一個包括系統內所有檔案名稱及路徑的數據庫,之後當尋找時就只需查詢這個數據庫,而不必實際深入檔案系統之中了。在一般的 dis

每天一個linux命令(1):scp 命令

filename use des 本地文件 lin oca www tro 服務器 scp命令主要用於兩個服務器之間文件的傳輸。 1、從服務器下載文件 scp [email protected]:/path/filename /tmp/local_destin

(轉)每天一個linux命令(9):touch 命令

cal log bsp 參考 一個 ati linux命令 包括 ces linux的touch命令不常用,一般在使用make的時候可能會用到,用來修改文件時間戳,或者新建一個不存在的文件。 1 基本使用 1.命令格式: touch [選項]... 文件... 2.

每天一個linux命令】wc

ror class pre inux 單詞 字節數 出現 行數 同一行 wc:統計 # wc -l/c/w #統計行數/字節數/字數(1個單詞/1個中文算一個數) wc -l yy.log cat yy.log |wc -l 1、當前目錄下文件個數 ls -lR

每天一個linux命令】curl

bsp linux cit 焦作 pos 參數 match 轉義 url curl:訪問http請求 1、不帶參數的 get 訪問網址 curl https://www.baidu.com/ 2、帶參數的 post 訪問網址 # 原始http請求1 http://19

每天一個linux命令】grep

http pre 內容 技術分享 image 忽略 linux filename com 【簡介】 grep:一種強大的文本搜索工具,它能使用正則表達式搜索文本,並把匹配的行打印出來 【grep常用用法】 [root@www ~]# grep [-acinv] [--col