Linux檔案管理操作命令

2021-10-24 05:24:58 字數 909 閱讀 9386

1.建立檔案

touch file1
2.刪除檔案

rm -rf file
3.修改檔名

mv file1 file2
4.檢視檔案內容

cat file4

more file4

5.複製檔案

cp file1 file2
6.移動檔案

mv file1 file2
7.編輯檔案

vi file2
8.批量建立檔案

touch file
9.檢視檔案前十行資料

cat file1 | head -2
head file1

head -10 file1

10.檢視檔案後十行資料

cat file1 | tail -10
tail flle1

tail -10 file1

11.跟蹤檔案資料

tail -f file1
12.查詢檔案

find / -name file1
13.查詢指定檔案內容

1)grep 'linux' file1
加入-i忽略大小寫查詢指定檔案內容

2)grep -i 'linux' file1

Linux檔案管理和操作命令積累

我們玩linux大部分的時間是對linux的檔案進行操作,所以我將一些常用的linux下檔案管理操作命令積累下來,方便隨時使用,明細如下 1 建立命令 touch 例子 touch skxiao.xml 說明 建立檔案skxiao.xml 2 刪除命令 rm 例子 rm r home shenkxi...

linux檔案管理命令

建立空白檔案 touch 不提示刪除非空目錄 rm rf 目錄名 r 遞迴刪除 f 強制 恢復 rm 刪除的檔案 ext3 這裡以檔案inode為例 檢視磁碟分割槽格式 df t 解除安裝掛載 umount data ext3grep dev sdb1 ls inode 2 記錄資訊繼續查詢目錄下檔...

Linux 檔案管理命令

作業系統 管理軟硬體資源,並為使用者提供與計算機互動能力的一種軟體。linux 開源 多使用者 允許多使用者同時登陸系統工作 核心小 安卓 執行速度快。一切皆檔案 linux 目錄結構 根目錄 bin home dev proc mnt usr etc lib bin 儲存系統所使用命令的可執行檔案...