Linux 常用命令 目錄檔案管理二

2021-08-04 11:25:51 字數 531 閱讀 8624

uniq 去除重複行

uniq file1 > file2 將file1 的重複行去掉,結果輸出到file2

例項:➜  ~ cat aa

this is a test file

abcabc

this is aa

➜  ~ uniq aa > bb

➜  ~ cat bb

this is a test file

abcthis is aa

➜  ~ 

wc 文字統計 

-l 統計行數

-c 統計位元組數

-m 統計單詞 數

grep 文字中搜尋單詞

grep '單詞' 檔案

grep -i 部分大小寫

-n 顯示行號

-v 顯示不包含匹配 模式的行

➜  ~ grep -in a aa

1:this is a test file

2:abc

3:abc

4:this is aa

➜  ~ 

Linux檔案和目錄管理常用命令

命令 具體用法 功能cd cd tmp 進入目錄tmp pwdpwd 顯示當前所在目錄 mkdir mkdir p tmp test 123 建立 tmp test 123級聯目錄,即使test目錄不存在 touch touch 111 在當前目錄下建立檔案111 rmrm rf tmp test ...

Linux檔案與目錄管理常用命令

符號含義 表示當前目錄.表示上一層目錄 表示前乙個目錄 表示使用者所在的家目錄 目錄操作 cd 切換目錄 pwd 顯示當前目錄 mkdir 建立乙個新目錄 rmdir 刪除乙個空目錄 路徑變數列印 echo path 當執行某個命令時,比如pwd,系統是根據path的配置去path定義的目錄下查詢名...

Linux檔案與目錄管理 常用命令

linux的目錄是樹狀結構,最頂級的目錄是根目錄 其他目錄通過掛載可以將他們新增到樹種,通過解除掛載可以移除他們。絕對路徑 路徑的寫法 由根目錄 寫起,如 usr share doc 這個目錄。相對路徑 路徑寫法,不是由 寫起的,例如由 usr share doc 要到 usr share man底...