Answers for "remove certain file from all directories linux"

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

Delete Directory Containing Files

rm -rf dirname
Posted by: Guest on June-09-2020

Code answers related to "remove certain file from all directories linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language