Answers for "how to delete everything in folder linux"

6

linux remove folder and all his content

rm -rf /path/to/directory
Posted by: Guest on February-29-2020
-1

delete all folders except one linux

find * -maxdepth 0 -name 'b' -prune -o -exec rm -rf '{}' ';'
Posted by: Guest on February-24-2021

Code answers related to "how to delete everything in folder linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language