雜貨解憂鋪-第一篇-10-10-南京江寧

浪去爪哇島喝咖啡發表於2020-10-10

Liunx+Markdown 雜糧餅

Linux檔案和目錄

Command 'clr' not found, did you mean:
//clr不是清除螢幕的命令
  command 'cli' from deb mono-runtime
  command 'csr' from deb rheolef
  command 'cyr' from deb console-cyrillic
  command 'lr' from deb lr
  command 'cpr' from deb node-cpr
  command 'car' from deb ucommon-utils
  command 'clm' from deb mcl
  command 'clp' from deb coinor-clp
  command 'cl' from deb cl-launch
  command 'mlr' from deb miller
  command 'ccr' from deb codecrypt
  command 'ctr' from deb containerd

Try: sudo apt install <deb name>

shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cls
//cls也不是清屏
Command 'cls' not found, but there are 17 similar ones.

shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ clear
//clear才是清屏
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ mkdir -p b/m/n/r //遞迴建立資料夾
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rmdir -p b/m/n/r //遞迴刪除資料夾
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ mkdir -p m/r  //遞迴建立資料夾
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ ped //ped不是命令

Command 'ped' not found, but there are 16 similar ones.

shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ pwd //顯示當前使用者所在的目錄
/home/shidazhou
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cp 1.txt r //在當前目錄複製1.txt-->r
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cp 1.txt m/r //把1.txt檔案複製到m/r的檔案目錄下
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rmdir -p m/r //遞迴刪除資料夾,因為r目錄下有檔案1.txt所以刪除失敗
rmdir: 刪除 'm/r' 失敗: 目錄非空
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -f 1.txt //強制刪除 1.txt
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -r m/r //將m目錄下的所有檔案和資料夾清空
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -f m/r //無法刪除,因為m/r是目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -f m //無法刪除,因為m/r是目錄
rm: 無法刪除'm': 是一個目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cp 1.txt m //將1.txt複製到檔案目錄m下,但是1.txt已經被刪除
cp: 無法獲取'1.txt' 的檔案狀態(stat): 沒有那個檔案或目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cp 1.txt m/ //將1.txt複製到檔案目錄m下,但是1.txt已經被刪除
cp: 無法獲取'1.txt' 的檔案狀態(stat): 沒有那個檔案或目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cp r m //將檔案r複製到m中
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -f m //無法刪除,m是目錄
rm: 無法刪除'm': 是一個目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rmdir -f m //刪除檔案目錄 沒有-f選項
rmdir: 不適用的選項 -- f
Try 'rmdir --help' for more information.
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rmdir m //m目錄下有檔案 所以刪除失敗
rmdir: 刪除 'm' 失敗: 目錄非空
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -f m // -f無法刪除目錄
rm: 無法刪除'm': 是一個目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ rm -r m //遞迴刪除整個檔案目錄m
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ mkdir m //建立檔案目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ mv r m //將檔案r移動到檔案目錄m中
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ mv r rr //將檔案r重新命名rr,失敗因為沒有檔案目錄rr
mv: 無法獲取'r' 的檔案狀態(stat): 沒有那個檔案或目錄
shidazhou@shidazhou-DJ-C-H310M-E-D3:~$ cd m //到檔案目錄m下
shidazhou@shidazhou-DJ-C-H310M-E-D3:~/m$ mv r rr //將檔案r改名為rr
shidazhou@shidazhou-DJ-C-H310M-E-D3:~/m$ ^C //ctrl+c不能複製


markdown使用

markdown使用攻略

相關文章