Search This Blog

Clean up dot underscore files on Linux

find . -name "._*" -print0 | xargs -0 rm -rf

1 comment:

  1. find . -name "._*" -delete
    adding -type f would'nt hurt also

    ReplyDelete