Answers for "delete all files in a folder with .txt extension terminal"

0

how to remove all files with a certain file type in terminal

rm -rf ./*.tmp
Posted by: Guest on December-13-2020
0

how to remove all files with a certain file type in terminal

find /path -name '*.orig' -delete
Posted by: Guest on December-13-2020

Code answers related to "delete all files in a folder with .txt extension terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language