1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-01 19:49:25 +00:00

Prefix rarely used osx functions

This commit is contained in:
Sorin Ionescu
2014-02-16 18:00:47 -05:00
parent 72782528aa
commit c74cf4b5e0
4 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1,11 @@
#
# Deletes .DS_Store and __MACOSX directories.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
find "${@:-$PWD}" \( \
-type f -name '.DS_Store' -o \
-type d -name '__MACOSX' \
\) -print0 | xargs -0 rm -rf