linux檔案管理 3

2022-10-11 08:06:12 字數 1527 閱讀 6360

ll

mkdir test

在當前目錄中建立乙個test資料夾

mv test test1

將 test 資料夾名稱修改為 test1

cp -rf ./test1 ./test2

cp index.html /home/test1

rm -rf test1

mkdir -p ./node/node1/a/b.js

tree node

touch index.txt

將  index.txt  修改為  index.html ,  mv index.txt index.html

rm -rf index.html

mv index.html /root/

將 index.html 檔案移動到 root 目錄中

cp index.html /mnt/

將  index.html 複製到  /mnt/ 目錄中

touch index.html

批量建立 index1.html 到 index10.html 共計10個檔案

rm -rf index.html

批量刪除 index1.html 到 index10.html 共計10個檔案

vi index.html

輸入  :wq 儲存並退出

輸入 :x 儲存並退出

輸入 :q! 不儲存並退出

輸入 dd

刪除游標所在的行

輸入  u  撤銷最近的修改

輸入  u 撤銷對當前行上做的所有修改

cat index.html

檢視  index.html 檔案中的內容

cat index.html | head -3

檢視  index.html 檔案前3行

cat index.html | tail -2

檢視  index.html 檔案最後2行

/llo

在當前檔案中輸入  /llo  搜尋  llo ,輸入  n

代表查詢下乙個  llo

cat index.html | grep llo

搜尋  index.html 檔案中的  llo

find / -name index.html

在根目錄下查詢  index.html 檔案

find /home -name index.html

在  /home 目錄下查詢  index.html 檔案

find / -name index*

在根目錄中查詢  index 開頭的檔案

linux命令 檔案管理(3)

1 建立檔案 touch file1 檔名 2 批量建立檔案 touch file 3 刪除檔案 rm file1 檔名 4 修改檔名 mv file1 原檔名 file2 新檔名 5 複製檔案 cp 原檔案路徑 原檔案 複製檔案所在路徑 複製檔名 6 移動檔案 mv 原檔案路徑 原檔案 移動檔案所...

linux 檔案管理 3 檔案萬用字元

ll proc meminfo 大小為0,不是硬碟檔案。在記憶體裡,只不過以檔案的方式顯示出來給我們看。ls conf ls f?conf ls ls mage ls 前乙個工作目錄 ls 當前 ls f?0 9 touch a.txt ll a 0 9 txt ls b acz txt ls b ...

Linux 初級 檔案與目錄管理(3)

在開始目錄的切換之前,先了解一下路徑,什麼是相對路徑,什麼是絕對路徑。絕對目錄 路徑的寫法,一定是由根目錄寫起 寫起。例如如 usr share dor這個目錄 相對路徑 路徑的寫法 不是由 寫起 例如由 usr share dor 要到 usr share man 下面時 可以寫成 cd man ...