命令行 刪除文件 (rm)

2021-09-15 15:01 更新

附錄A-練習(xí)14:刪除文件 (rm)

這節(jié)練習(xí)中,你將學(xué)會如何使用rm命令刪除一個(gè)文件。

做到這些

Linux

$ cd temp
$ ls
uncool.txt  iamcool.txt  neat.txt  something  thefourthfile.txt
$ rm uncool.txt
$ ls
iamcool.txt  neat.txt  something  thefourthfile.txt
$ rm iamcool.txt neat.txt thefourthfile.txt
$ ls
something
$ cp -r something newplace
$
$ rm something/awesome.txt
$ rmdir something
$ rm -rf newplace
$ ls
$

Windows

> cd temp
> ls

    Directory: C:\Users\zed\temp

Mode                LastWriteTime     Length Name
----                -------------     ------ ----
d----        12/22/2011   4:52 PM            newplace
d----        12/22/2011   4:52 PM            something
-a---        12/22/2011   4:49 PM          0 iamcool.txt
-a---        12/22/2011   4:49 PM          0 neat.txt
-a---        12/22/2011   4:49 PM          0 thefourthfile.txt
-a---        12/22/2011   4:49 PM          0 uncool.txt

> rm uncool.txt
> ls

    Directory: C:\Users\zed\temp

Mode                LastWriteTime     Length Name
----                -------------     ------ ----
d----        12/22/2011   4:52 PM            newplace
d----        12/22/2011   4:52 PM            something
-a---        12/22/2011   4:49 PM          0 iamcool.txt
-a---        12/22/2011   4:49 PM          0 neat.txt
-a---        12/22/2011   4:49 PM          0 thefourthfile.txt

> rm iamcool.txt
> rm neat.txt
> rm thefourthfile.txt
> ls

    Directory: C:\Users\zed\temp

Mode                LastWriteTime     Length Name
----                -------------     ------ ----
d----        12/22/2011   4:52 PM            newplace
d----        12/22/2011   4:52 PM            something

> cp -r something newplace
> rm something/awesome.txt
> rmdir something
> rm -r newplace
> ls
>

你應(yīng)該學(xué)到的

這里我們清理了之前練習(xí)中的所有文件。還記得我讓你嘗試使用rmdir刪除一個(gè)不為空的目錄嗎?那個(gè)操作失敗了因?yàn)槟銦o法刪除包含文件在內(nèi)的目錄。要做到這一點(diǎn),你需要?jiǎng)h除文件,或者遞歸刪除所有的內(nèi)容。這是你要在本節(jié)練習(xí)結(jié)尾要做的事情。

更多練習(xí)

  • 清理從開始練習(xí)到現(xiàn)在所有temp目錄下的文件。
  • 在你的筆記本上寫下遞歸刪除文件時(shí)一定要小心。
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號