profile-osx 168 B

123456789
  1. alias list="ls -lFhG --color"
  2. readlink() {
  3. if [[ "$1" == "-f" ]]; then
  4. perl -MCwd -e 'print Cwd::abs_path shift' "$2"
  5. else
  6. "$(which readlink)" "$@"
  7. fi
  8. }