Answers for "remove files with extension linux"

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

Code answers related to "remove files with extension linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language