update
This commit is contained in:
parent
3ee2f4c885
commit
9765a9e04a
11 changed files with 15 additions and 54 deletions
9
zsh/mac_files.zsh
Normal file
9
zsh/mac_files.zsh
Normal file
|
@ -0,0 +1,9 @@
|
|||
function find_mac_files() {
|
||||
find . -name '.DS_Store';
|
||||
find . -name '._*';
|
||||
}
|
||||
|
||||
function clean_mac_files() {
|
||||
find . -name '.DS_Store' -type f -delete;
|
||||
find . -name '._*' -type f -delete
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue