每天一個linux命令--持續更新中~~
檔案管理
cat
引數說明
引數 | 說明 |
---|---|
-n或–number | 顯示行號 |
-b或–number-nonblank | 與-n相似,但是不對空行計算 |
-E或–show-ends | 在行尾處顯示$ |
-T或–show-tabs | 將TAB字元替換為^I |
示例
cat命令用於將檔案進行連線和將檔案內容列印到標準輸出終端裝置
- 檢視檔案
[root@k8s-1 doc]# cat test1
test1
[root@k8s-1 doc]# cat test2
test2
- 同時檢視兩個檔案
[root@k8s-1 doc]# cat test1 test2
test1
test2
- 輸出檔案內容並顯示行號
[root@k8s-1 doc]# cat -n test1
1 test1
2 test1
3 test1
4 test1
[root@k8s-1 doc]# cat -n test1
1 test1
2 test1
3
4 test1
5 test1
[root@k8s-1 doc]# cat -b test1
1 test1
2 test1
3 test1
4 test1
-n與-b的區別是,cat -b空行不計算行號
- 檔案追加
[root@k8s-1 doc]# cat test1
test1
test1
test1
test1
[root@k8s-1 doc]# cat test2
test2
[root@k8s-1 doc]# cat test1 >> test2
[root@k8s-1 doc]# cat test2
test2
test1
test1
test1
test1
- 檔案覆蓋
[root@k8s-1 doc]# cat test2
test2
test1
test1
test1
test1
[root@k8s-1 doc]# cat test1 > test2
[root@k8s-1 doc]# cat test2
test1
test1
test1
test1
- 在行尾處顯示$
[root@k8s-1 doc]# cat -E test1
test1 $
te st1$
- 檔案中的TAB以^I顯示
[root@k8s-1 doc]# cat -T test1
test1^I
te^Ist1
- 清空檔案
[root@k8s-1 doc]# cat /dev/null > test2
檔案編輯
檔案傳輸
磁碟管理
磁碟維護
網路通訊
系統管理
系統設定
壓縮備份
裝置管理
相關文章
- 一些Linux shell命令 - 持續更新Linux
- Linux基本bash命令(持續更新)Linux
- Linux 常用命令 持續更新Linux
- Linux常用命令整理-持續更新Linux
- 一些常用的命令(持續更新)
- 高逼格又實用的Linux命令:持續更新中Linux
- CentOS 7 常用命令 (持續更新中...)CentOS
- 每天一個 Linux 命令(49): at 命令Linux
- 每天一個linux命令(49):at命令Linux
- git使用、持續更新中Git
- docker 常用命令(持續更新)Docker
- Git 常用命令(持續更新)Git
- mdk的命令講解(持續更新)
- Git常用命令 (持續更新)Git
- LINUX進階(持續更新)Linux
- Linux常用命令知識積累(持續更新)Linux
- 機器學習中的幾個常見概念(持續更新中......)機器學習
- 每天一個 Linux 命令(12):more 命令Linux
- 每天一個 Linux 命令(16):which 命令Linux
- 每天一個Linux命令(6):rmdir命令Linux
- 每天一個Linux命令(5):rm命令Linux
- 每天一個Linux命令(2):shutdown命令Linux
- 每天一個 Linux 命令(17):whereis 命令Linux
- 每天一個Linux命令(3):pwd命令Linux
- 每天一個 Linux 命令(2):cd命令Linux
- 每天一個linux命令(1):ls命令Linux
- 每天一個 Linux 命令(16):which命令Linux
- 每天一個 Linux 命令(18):locate 命令Linux
- 每天一個 Linux 命令(7):mv命令Linux
- 每天一個 Linux 命令(4):mkdir命令Linux
- 每天一個 Linux 命令(28):tar 命令Linux
- 每天一個 Linux 命令(44): top 命令Linux
- 每天一個 Linux 命令(41): ps 命令Linux
- 每天一個 Linux 命令(40): wc 命令Linux
- 每天一個 Linux 命令(48): watch 命令Linux
- 每天一個 Linux 命令(46): vmstat 命令Linux
- 每天一個 Linux 命令(45): free 命令Linux
- 每天一個 Linux 命令(1):ls 命令Linux