Answers for "how to recursively delete files in unix"

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

how to delete particular type file recursively in linux

find . -type f -name '*.o' -delete
Posted by: Guest on September-06-2020

Code answers related to "how to recursively delete files in unix"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language