Answers for "how to remove all non empty folder from terminal"

11

terminal delete directory not empty

rm -rf myDirectory
Posted by: Guest on January-16-2020
0

delete all empty files and folders in terminal

find /home/savona/ -type f -empty -exec rm {} \;
Posted by: Guest on November-14-2020

Code answers related to "how to remove all non empty folder from terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language