2012-01-31 23:37:51 -05:00
|
|
|
#
|
|
|
|
# Defines Mac OS X aliases and functions.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2011-05-28 11:27:50 -04:00
|
|
|
|
2012-07-23 15:00:44 -04:00
|
|
|
# Return if requirements are not found.
|
2012-06-02 14:20:57 -04:00
|
|
|
if [[ "$OSTYPE" != darwin* ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2012-08-04 14:48:32 -04:00
|
|
|
#
|
|
|
|
# Aliases
|
|
|
|
#
|
|
|
|
|
2011-10-11 23:13:58 -04:00
|
|
|
# Change directory to the current Finder directory.
|
|
|
|
alias cdf='cd "$(pfd)"'
|
2011-02-18 12:17:00 +00:00
|
|
|
|
2011-10-11 23:13:58 -04:00
|
|
|
# Push directory to the current Finder directory.
|
|
|
|
alias pushdf='pushd "$(pfd)"'
|
2011-02-22 23:32:50 -05:00
|
|
|
|
2012-08-04 14:48:32 -04:00
|
|
|
#
|
|
|
|
# Functions
|
|
|
|
#
|
|
|
|
|
2011-10-11 23:13:58 -04:00
|
|
|
# Open files in Quick Look.
|
2012-03-23 14:57:51 -04:00
|
|
|
function ql {
|
2011-10-11 23:13:58 -04:00
|
|
|
(( $# > 0 )) && qlmanage -p "$@" &> /dev/null
|
2011-02-22 23:32:50 -05:00
|
|
|
}
|
|
|
|
|
2011-10-11 23:13:58 -04:00
|
|
|
# Delete .DS_Store and __MACOSX directories.
|
2012-03-23 14:57:51 -04:00
|
|
|
function rm-osx-cruft {
|
2012-01-20 19:52:08 -05:00
|
|
|
find "${@:-$PWD}" \( \
|
|
|
|
-type f -name '.DS_Store' -o \
|
|
|
|
-type d -name '__MACOSX' \
|
|
|
|
\) -print0 | xargs -0 rm -rf
|
2011-07-28 18:20:36 -04:00
|
|
|
}
|
2011-12-28 14:54:19 -05:00
|
|
|
|