zshconfig/dot_files.zsh
2020-11-24 16:49:53 +01:00

10 lines
190 B
Bash

function find_dot_files() {
find . -name '.DS_Store';
find . -name '._*';
}
function clean_dot_files() {
find . -name '.DS_Store' -type f -delete;
find . -name '._*' -type f -delete
}