Bash script absolute path with OS X
There's a realpath()
C function that'll do the job, but I'm not seeing anything available on the command-line. Here's a quick and dirty replacement:
#!/bin/bash
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
realpath "$0"
This prints the path verbatim if it begins with a /
. If not it must be a relative path, so it prepends $PWD
to the front. The #./
part strips off ./
from the front of $1
.
These three simple steps are going to solve this and many other OS X issues:
- Install Homebrew
brew install coreutils
grealpath .
(3) may be changed to just realpath
, see (2) output