This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/bin/bash
|
|
function abs-path {
|
|
local target="$1"
|
|
if [ "$target" == "." ]; then
|
|
echo "$(pwd)"
|
|
elif [ "$target" == ".." ]; then
|
|
echo "$(dirname "$(pwd)")"
|
|
else
|
|
echo "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")"
|
|
fi
|
|
}
|