Answers for "delete all files in current directory linux including dots"

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 "delete all files in current directory linux including dots"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language