Skip to content

Commit

Permalink
Merge pull request mathiasbynens#42 from clee/patch-1
Browse files Browse the repository at this point in the history
Shift the '-type f' argument before the '-name' argument in `find`
  • Loading branch information
mathiasbynens committed Feb 8, 2012
2 parents b0c2aee + 2a65d95 commit 6135d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .aliases
Expand Up @@ -53,7 +53,7 @@ type -t md5sum > /dev/null || alias md5sum="md5"
alias c="tr -d '\n' | pbcopy"

# Recursively delete `.DS_Store` files
alias cleanup="find . -name '*.DS_Store' -type f -ls -delete"
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"

# File size
alias fs="stat -f \"%z bytes\""
Expand Down

0 comments on commit 6135d22

Please sign in to comment.