每天一個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 常用命令 持續更新Linux
- Linux常用命令整理-持續更新Linux
- 一些常用的命令(持續更新)
- 每天一個 Linux 命令(16):which 命令Linux
- 每天一個 Linux 命令(12):more 命令Linux
- 每天一個Linux命令(6):rmdir命令Linux
- 每天一個Linux命令(5):rm命令Linux
- 每天一個Linux命令(2):shutdown命令Linux
- CentOS 7 常用命令 (持續更新中...)CentOS
- LINUX進階(持續更新)Linux
- 每天學一個 Linux 命令(15):manLinux
- 每天學一個 Linux 命令(13):touchLinux
- 每天一個Linux命令(1):xargsLinux
- docker 常用命令(持續更新)Docker
- Git 常用命令(持續更新)Git
- 每天一個linux命令(1):find命令之execLinux
- 每天學習一個Linux命令-目錄Linux
- 【 一些網址,持續更新中….. 】
- git使用、持續更新中Git
- Web命令執行筆記(持續更新)Web筆記
- Angular核心概念一覽表(持續更新中)Angular
- JVM(持續更新。。。)JVM
- FastApi持續更新ASTAPI
- 彙編筆記(持續更新中)筆記
- Spring面試題(持續更新中)Spring面試題
- JiaoZiVideoPlayer使用說明(持續更新中...)IDE
- clion小白使用技巧(持續更新中)
- 常用快捷鍵,持續更新(個人向)
- Linux 系統化學習系列文章總目錄(持續更新中)Linux
- Git 常用命令總結,將會持續更新Git
- 常見 git 需求整理(持續更新中)Git
- springMVC簡單demo集合(持續更新中……)SpringMVC
- 日常工作筆記(持續更新中。。)筆記
- 每天一個Linux命令-使用du檢視檔案大小Linux
- Blender 雕刻 持續更新
- Xcode 技巧 持續更新XCode
- 前端面試的一些題目(持續更新中)前端面試