linux命令——rm
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章