Created
September 11, 2012 08:42
-
-
Save batako/3696966 to your computer and use it in GitHub Desktop.
相対パスから絶対パスに変換
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 指定ディレクトリの最後の「/」は省略可能 | |
PATH="Download/pantsu.zip" | |
if [ -d $PATH ] | |
then | |
echo `cd ${PATH%/*};pwd` | |
else | |
echo `cd ${PATH%/*};pwd`/${PATH##*/} | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment