Linux檔案操作命令

2021-08-14 14:04:27 字數 907 閱讀 3515

檔案查詢

ls -l 查詢檔案並且顯示檔案所有資訊

ls -lh 查詢檔案並且人性化顯示檔案所有資訊

ls -i 檢視檔案i節點資訊

cat 檢視檔案

cat -n 檢視檔案並且查詢出來的文字帶上行號

tac 倒著顯示你要檢視的文字,與cat功能類類似,不支援-n

more 檢視檔案,分頁顯示,按空格翻頁,回車換行,q鍵退出,不可向上翻頁

head 檢視檔案指定前幾行,預設為前10行

head -n

[行數]

檢視檔案指定前幾行

tail 檢視檔案末尾幾行,預設後10行

tail -n

[行數]

檢視檔案末尾指定行數

tail -f 檢視檔案末尾,實時更新

操作檔案
mkdir 建立檔案,不可遞迴建立,可以建立多個檔案

mkdir -r 建立檔案,遞迴建立,可以建立多個

rmdir 刪除空目錄,非空目錄不可刪除

cp 複製檔案,可複製多個檔案

cp -r 複製資料夾,可複製多個資料夾

cp -p 複製檔案,並且保留檔案屬性,比如檔案建立時間

mv 剪下檔案,資料夾,同時可修改檔名

rm 刪除檔案

rm -r 刪除資料夾

rm -f 強制刪除

touch 建立檔案,可同時建立多個檔案 空格間隔,加上雙引號,使空格也成為檔名的一部分

ln [原檔案路徑]

[目標檔案路徑]

生成硬鏈結,不能誇分割槽,不可以對目錄使用(目標檔案和原檔案實時更新)

ln -s

[原檔案路徑]

[目標檔案路徑]

生成軟鏈結。(軟連線,相於快捷方式)

linux檔案操作命令

1.建立檔案 touch test.txt 建立檔案 echo this is a test test.txt 建立檔案並寫入內容 2.檢視檔案內容 cat cat test test.txt 檢視內容 cat n test test.txt 檢視內容並顯示行號 cat a test test.tx...

Linux檔案操作命令

檔案路徑操作 root localhosttest ls顯示當前目錄下的所有檔案及資料夾 root localhosttest ll以詳細方式顯示所有檔案與資料夾。相當於 ls l 命令 root localhosttest cd user 開啟user 資料夾 root localhosttest...

linux檔案操作命令

檔案操作命令 ls 顯示 ls a 顯示所有 包括隱藏 ls l 顯示詳細資訊 ls lh 同上,人性化顯示 ls ld etc 目錄的詳細資訊 ls i 檔案號 cd 切換到根目錄 cd.回到上一目錄 mkdir 建立空目錄 p 遞迴建立子目錄 cp r 原始檔或目錄 目的目錄 複製檔案或目錄 p...