1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 15:50:28 +00:00
prezto/modules/osx/functions/osx-rm-dir-metadata

16 lines
261 B
Plaintext
Raw Normal View History

2014-02-03 01:08:21 +00:00
#
# Deletes .DS_Store and __MACOSX directories.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# function osx-rm-dir-metadata {
2014-02-03 01:08:21 +00:00
find "${@:-$PWD}" \( \
-type f -name '.DS_Store' -o \
-type d -name '__MACOSX' \
\) -print0 | xargs -0 rm -rf
# }