Using find
, from the parent, recursively:
find . -type f -name '._*'
After checking append -delete
to remove the files:
find . -type f -name '._*' -delete
Using find
, from the parent, recursively:
find . -type f -name '._*'
After checking append -delete
to remove the files:
find . -type f -name '._*' -delete