Oct 262014
Remove Mac OSX's dot underscore files
Answer:
To list the dot underscore files in a Mac directory, you can use:
# find . -name '._*' -exec ls {} \;
To remove them, you can try:
# find . -name '._*' -exec rm -v {} \;
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
Remove Mac OSX's dot underscore files
Answer:
To list the dot underscore files in a Mac directory, you can use:
# find . -name '._*' -exec ls {} \;
To remove them, you can try:
# find . -name '._*' -exec rm -v {} \;