Answers for "shell script remove files with extension"

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

Code answers related to "shell script remove files with extension"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language