Answers for "remove all files containing string 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
0

remove all files in a directory linux that match pattern

find . -name '*.orig' #-delete
Posted by: Guest on July-03-2021

Code answers related to "remove all files containing string linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language