Answers for "command to delete file =s with certain extensions on terminal"

6

rm files with extension

find . -name "*.bak" -type f -delete
Posted by: Guest on September-09-2020
0

linux remove all files same extension in directory

find . -type f -iname *.zip -delete
Posted by: Guest on October-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 "command to delete file =s with certain extensions on terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language