mirror of
https://github.com/Erreur32/cheat.git
synced 2025-03-13 20:18:47 +01:00
8 lines
182 B
Text
8 lines
182 B
Text
# 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 '{}' \;
|