add mac files
This commit is contained in:
parent
5554d733c1
commit
7f6a5bfc0a
2 changed files with 10 additions and 0 deletions
5
functions/clean_mac_files.sh
Normal file
5
functions/clean_mac_files.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
# delete mac files
|
||||
function clean_mac_files
|
||||
find . -name '.DS_Store' -type f -delete;
|
||||
find . -name '._*' -type f -delete
|
||||
end
|
5
functions/find_mac_files.fish
Normal file
5
functions/find_mac_files.fish
Normal file
|
@ -0,0 +1,5 @@
|
|||
# find mac files
|
||||
function find_mac_files
|
||||
find . -name '.DS_Store';
|
||||
find . -name '._*';
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue