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