Wireless Army
This is a blog / tips and tricks website for web developers and security researchers.
follow us in feedly


rm
by admin
 at 2016-07-23 22:21:00.

rm is used to remove file(s) or folder(s)
example:

rm text.txt

to remove folder

rm -r folder

if a program is running but you want to delete it any way:

rm -f text.txt

or

rm --force text.txt

this will give you a list of what have been done

rm -r -v myfolder