diff --git a/zsh/macdev b/zsh/macdev new file mode 100755 index 0000000..827f26d --- /dev/null +++ b/zsh/macdev @@ -0,0 +1,10 @@ +local dev_path; +case `uname -s` in + Darwin) + dev_path=/Developer/usr + if [[ -r $dev_path ]] ; then + export PATH=$PATH:$dev_path/bin:$dev_path/sbin + export MANPATH=`manpath -c`:$dev_path/share/man + fi + ;; +esac