getAbsPath is a little console-based tool which converts relative
win32 or POSIX pathes to absolute ones. You can use it e.g. in
shell scripts to get the path of the script:

    #!/bin/bash
    PWD=`pwd`
    RelPath="../../../testdir"
    GAP=`./getAbsPath $PWD $0`
    echo $GAP
    exit 0

Have much fun!

Philippe Stellwag <linux[at]mp3s[dot]name>
