Skip to content

Instantly share code, notes, and snippets.

@valvallow
Created March 8, 2012 06:31
Show Gist options
  • Save valvallow/1999192 to your computer and use it in GitHub Desktop.
Save valvallow/1999192 to your computer and use it in GitHub Desktop.
relative path to absolute path
#!/bin/sh
# http://dokonoumanohone.blog47.fc2.com/blog-entry-2.html
for ARG in "$@"
do
echo $(cd $(dirname "$ARG") && pwd)/$(basename "$ARG")
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment