Commit 2614b7ec authored by Igor Kapkov's avatar Igor Kapkov Committed by Marc Cornellà
Browse files

osx: fix rmdsstore function definition (#7443)

parent 0a59baf4
...@@ -284,6 +284,6 @@ alias showfiles="defaults write com.apple.finder AppleShowAllFiles -bool true && ...@@ -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" alias hidefiles="defaults write com.apple.finder AppleShowAllFiles -bool false && killall Finder"
# Remove .DS_Store files recursively in a directory, default . # Remove .DS_Store files recursively in a directory, default .
rmdsstore() { function rmdsstore() {
find "${@:-.}" -type f -name .DS_Store -delete find "${@:-.}" -type f -name .DS_Store -delete
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment