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
|
|
|
|
#
|
|
|
|
|
2014-02-02 20:08:55 -05:00
|
|
|
# Changes directory to the current Finder directory.
|
2011-10-11 23:13:58 -04:00
|
|
|
alias cdf='cd "$(pfd)"'
|
2011-02-18 12:17:00 +00:00
|
|
|
|
2014-02-02 20:08:55 -05:00
|
|
|
# Pushes directory to the current Finder directory.
|
2011-10-11 23:13:58 -04:00
|
|
|
alias pushdf='pushd "$(pfd)"'
|