1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

osx: fix rmdsstore function definition (#7443)

This commit is contained in:
Igor Kapkov 2018-11-28 08:58:36 +11:00 committed by Marc Cornellà
parent 0a59baf4c5
commit 2614b7ecdf

View file

@ -284,6 +284,6 @@ alias showfiles="defaults write com.apple.finder AppleShowAllFiles -bool true &&
alias hidefiles="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"
# Remove .DS_Store files recursively in a directory, default .
rmdsstore() {
function rmdsstore() {
find "${@:-.}" -type f -name .DS_Store -delete
}