refactor
This commit is contained in:
parent
828bb9cf84
commit
4488e05a86
12 changed files with 57 additions and 18 deletions
|
@ -1,8 +1,10 @@
|
|||
# find mac files
|
||||
function find_mac_files() {
|
||||
find . -name '.DS_Store';
|
||||
find . -name '._*';
|
||||
}
|
||||
|
||||
# delete mac files
|
||||
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