Answers for "linux command to remove all files and directories"

8

remove all files inside directory linux

# remove everything in a directory 
rm /path/to/dir/*
# remove all sub-directories and files
rm -r /path/to/dir/*
Posted by: Guest on July-10-2020
1

remove all directrories in onde command hit

rm -R -- */
Posted by: Guest on September-09-2020

Code answers related to "linux command to remove all files and directories"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language