mkdocs/docs/bash.md
francesco 3d91b426af
All checks were successful
continuous-integration/drone/push Build is passing
document structure refatcoring
2021-05-24 15:17:11 +02:00

403 B

Bash Commands

Find

Find and delete

Find and delete command

find / -name .DS_Store -delete

Alternative find and delete command

find / -name ".DS_Store" -exec rm {} \;

the previous command is due that not all find have a delete funcion but with overhead of new process -exec.

Find and delete with no overhead

find / -name .DS_Store -print0 | xargs -0 rm