home

Code Library

function abspath() {
  if [[ -z "$path" ]]; then
    pwd
  else
    realpath "$path"
  fi
}