@@ -1,9 +1 @@
alias list="ls -lFhG"
-
-readlink() {
- if [[ "$1" == "-f" ]]; then
- perl -MCwd -e 'print Cwd::abs_path shift' "$2"
- else
- "$(which readlink)" "$@"
- fi
-}
@@ -145,7 +145,9 @@ clrun() {
"$@"
}
-if [[ $(uname) == "Darwin" ]]; then # OSX / FreeBSD
+if [[ $(uname) == "Darwin" ]]; then # OSX
+ . ${HOME}/.profile-osx
+elif [[ $(uname) == *BSD* ]]; then # FreeBSD
. ${HOME}/.profile-bsd
else
. ${HOME}/.profile-linux