mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
ed91f9fa37
* 'master' of github.com:ImmortalPC/cheat: [GREP,NMAP,RM,WGET] Add new cheats
9 lines
182 B
Plaintext
9 lines
182 B
Plaintext
# Remove files and subdirs
|
|
rm -rf path/to/the/target/
|
|
|
|
# Ignore non existent files
|
|
rm -f path/to/the/target
|
|
|
|
# Remove a file with his inode
|
|
find /tmp/ -inum 6666 -exec rm -i '{}' \;
|