Horje
bash delete all files of type recursively Code Example
rm files with extension
find . -name "*.bak" -type f -delete
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




Shell

Related
how to install openssl on windows 10 Code Example how to install openssl on windows 10 Code Example
wget command not found mac Code Example wget command not found mac Code Example
bash copy without prompt Code Example bash copy without prompt Code Example
zip full folder ubuntu Code Example zip full folder ubuntu Code Example
bash print array Code Example bash print array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12