Horje
rm recursive file pattern 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
rm recursive file pattern
find . -type f -name '*.o' -delete




Shell

Related
target of uri doesn't exist 'package flutter/material.dart' Code Example target of uri doesn't exist 'package flutter/material.dart' Code Example
kubectl restart deployment Code Example kubectl restart deployment Code Example
delete files with extension recursively Code Example delete files with extension recursively Code Example
openssl p12 to pem Code Example openssl p12 to pem Code Example
how to download utorrent in kali linux Code Example how to download utorrent in kali linux Code Example

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