#!/bin/sh
#    abspath

set -e

# technically, this could be optimized to not do this step 
# if both paths are already relative to the current or root 
# directory
echo `cd $1; /bin/pwd`

