zshconfig/dot_files.zsh
2020-11-09 08:05:39 +01:00

9 lines
189 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
}