1. 建立目錄
mkdir格式 mkdir [option]... directory...
選項 -p 遞迴建立
-v 建立時提示
例:root@ubuntu:/home/eko/x# mkdir -pv a/b/c
mkdir: created directory 'a'
mkdir: created directory 'a/b'
mkdir: created directory 'a/b/c'
2. 建立檔案
touch 原意為改變檔案時間touch [option]... file...
例:root@ubuntu:/home/eko/x# touch abc.txt
3. 刪除檔案/目錄
rmrm [option]... [file]...
選項: -f 忽略不存在檔案和引數
-r 遞迴刪除
例:root@ubuntu:/home/eko# rm -rf x
4. 複製檔案
cp (只允許將乙個檔案複製到另乙個檔案 或者將多個檔案複製到乙個目錄)cp [option]... [-t] source dest
cp [option]... source... directory
cp [option]... -t directory source...
選項 -r 遞迴複製
-f 如果目標檔案存在 強行覆蓋
-p 保留檔案屬主
-a 歸檔複製,常用於備份
例:將乙個檔案複製到另乙個位置
# cp /etc/passwd /home/eko/x/passwd
將多個檔案複製到乙個目錄下
# cp /etc/passwd /etc/issue /home/eko/x/
5. 移動檔案 / 重新命名
mvmv [option]... [-t] source dest
mv [option]... source... directory
mv [option]... -t directory source...
選項: -f 如果目標存在,強行覆蓋
例:移動檔案
# mv ./a.txt ../y/
重新命名# mv a.txt abc.txt
6. 檢視目錄結構
tree dictory例:# tree /home/eko
7. 檢視文字檔案
1. cat 連線並顯示 (可以連線多個檔案)cat [option]... [file]...
選項: -n 顯示行號
-e 顯示每一行行結束符
2. tac 倒敘顯示
3. head -n file 顯示前n行
4. tail -n file 顯示後n行
5. cut -d[『分隔符』] -f[『域』] file 切取檔案某個字段,可以是多個域,用,隔開
5. wc -[option] file
選項:-c 位元組個數
-m 字個數
-l 行數(預設)
linux 大全一 檔案目錄操作
pwd 檢視當前所在路勁 ls ahli 檢視所有檔案的大小和詳細資訊和編號 檔名表示隱藏檔案 e 結尾的斷行符以 顯示 t tab按鍵以 i顯示 v 列出看不來的特殊字元 b和 n 列出行號,前者空白行不標記行號,後者要標記。head,tail n 11 filename 檢視頭或尾11行。預設顯...
linux基礎(一) 檔案與目錄
linux檔案目錄結構 1.根目錄下子目錄為一級目錄,一級目錄下還有二級目錄,以此呈樹狀結構,根目錄為樹根。2.fhs file systemhierarchy standard 檔案系統層次話標準,規定了linux系統中所有一級目錄和部分二級目錄 usr和 var 的用途。各目錄作用表 說明3.一...
python(一) 檔案操作
my file open my file.txt w 用法 open 檔名 形式 其中形式有 w write r read.my file.write text 該語句會寫入先前定義好的 text my file.close 關閉檔案 this is my first test.this is th...