Answers for "linux remove files by extension recursively"

6

rm files with extension

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

bash delete all files of type recursively

# print all files recursively with exstension .bak
find . -name "*.bak" -type f

# add -delete command at the end to delete them
find . -name "*.bak" -type f -delete
Posted by: Guest on November-18-2020
0

recursively remove files with extension linux

find . -name "*.bak" -type f -delete
Posted by: Guest on August-24-2021

Code answers related to "linux remove files by extension recursively"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language