Re: dot_clean utility

2022-02-20 Thread Jonathan Cohn
Hello, This will work in a single folder. You can expand this out to work in an entire directory tree with the find command. find . -name '._*' -exec rm '{}' ';' This is not the most efficient way to do it as it will exec a separate "rm" command for each file that starts with "._'. If you want

Re: dot_clean utility

2022-02-19 Thread dan d.
No utility is required because a terminal command easily does it; which the utility likely duplicates. While in terminal and in the flash drive do this command which removes all .folders or single .files, make sure none of them are neededd as are some in a users home directory. make note of t