Relative to Absolute Path Conversion


/ Published in: Bash
Save to your folder(s)

the os x version of realpath works differently than the linux version; the following allows you to attain the same functionality in a shell on os x as `readlink -f $0` on a standard linux dist.


Copy this code and paste it in your HTML
  1. normalize_path() {
  2. eval "NORMALIZED_PATH=$1"
  3. NORMALIZED_PATH=`php -r "echo realpath('$NORMALIZED_PATH');"`
  4. }

URL: http://andy.wordpress.com/2008/05/09/bash-equivalent-for-php-realpath/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.