1. 程式人生 > >linux命令——rm

linux命令——rm

linux命令 rm

rm命令主要用於刪除文件以及目錄,在滲透測試中我們常常需要上傳或者新建一些測試文件,為了盡可能少地留下痕跡,我們常常需要刪除我們上傳的或者新建的一些文件,這時我們就需要使用該命令來刪除這些文件!

基本使用語法:

rm 文件名
[email protected]:~/eth10/eth10# ls
test  test1  test.txt
[email protected]:~/eth10/eth10# rm test.txt
[email protected]:~/eth10/eth10# ls
test  test1
[email protected]
/* */:~/eth10/eth10#


對於刪除目錄以及目錄中的所有文件,我們需要使用-r參數

[email protected]:~/eth10/eth10# rm test/
rm: 無法刪除‘test/‘: 是一個目錄
[email protected]:~/eth10/eth10# rm -r test/
[email protected]:~/eth10/eth10# ls
test1
[email protected]:~/eth10/eth10#

對於可讀文件,會出現是否刪除的提示,這時我們需要使用-f參數直接刪除而不提示

[email protected]
/* */:~/eth10/eth10# ls test [email protected]:~/eth10/eth10# rm -rf test/ [email protected]:~/eth10/eth10# ls [email protected]:~/eth10/eth10#


本文出自 “eth10” 博客,請務必保留此出處http://eth10.blog.51cto.com/13143704/1957503

linux命令——rm