スクリプトの引数として、いくつかのファイルパスがあります。もちろん、これらは相対(または〜を含む)にすることができます。しかし、私が書いた関数には絶対パスが必要ですが、シンボリックリンクは解決されていません。
これに機能はありますか?
MY_PATH=$(readlink -f $YOUR_ARG)
は、"./"
や"../"
などの相対パスを解決します
これも考慮してください( source ):
#!/bin/bash
dir_resolve()
{
cd "$1" 2>/dev/null || return $? # cd to desired directory; if fail, quell any error messages but return exit status
echo "`pwd -P`" # output full, link-resolved path
}
# sample usage
if abs_path="`dir_resolve \"$1\"`"
then
echo "$1 resolves to $abs_path"
echo pwd: `pwd` # function forks subshell, so working directory outside function is not affected
else
echo "Could not reach $1"
fi
function abspath {
if [[ -d "$1" ]]
then
pushd "$1" >/dev/null
pwd
popd >/dev/null
Elif [[ -e $1 ]]
then
pushd "$(dirname "$1")" >/dev/null
echo "$(pwd)/$(basename "$1")"
popd >/dev/null
else
echo "$1" does not exist! >&2
return 127
fi
}
pushd
/popd
を使用して、pwd
が有用な状態になります。
シンプルなワンライナー:
function abs_path {
(cd "$(dirname '$1')" &>/dev/null && printf "%s/%s" "$PWD" "${1##*/}")
}
使用法:
function do_something {
local file=$(abs_path $1)
printf "Absolute path to %s: %s\n" "$1" "$file"
}
do_something $HOME/path/to/some\ where
私はまだ、パスが存在するかどうかを完全に気づかないようにする方法を見つけようとしています(したがって、ファイルを作成するときにも使用できます)。
これはOS Xで私のためのトリックを行います:$(cd SOME_DIRECTORY 2> /dev/null && pwd -P)
どこでも動作するはずです。他のソリューションは複雑すぎるように見えました。
oS Xで使用できます
stat -f "%N" YOUR_PATH
linuxでは、realpath
実行可能ファイルがあります。そうでない場合は、以下が機能する可能性があります(リンクだけでなく):
readlink -c YOUR_PATH
たぶんこれはより読みやすく、サブシェルを使用せず、現在のディレクトリを変更しません:
dir_resolve() {
local dir=`dirname "$1"`
local file=`basename "$1"`
pushd "$dir" &>/dev/null || return $? # On error, return error code
echo "`pwd -P`/$file" # output full, link-resolved path with filename
popd &> /dev/null
}
つかいます readlink -f <relative-path>
、例:.
export FULLPATH=`readlink -f ./`
別の方法があります。 python bashスクリプトに埋め込むことで相対パスを解決できます。
abs_path=$(python3 - <<END
from pathlib import Path
path = str(Path("$1").expanduser().resolve())
print(path)
END
)
自己編集、私はOPが解決されたシンボリックリンクを探していないというOPに気づいた:
「しかし、私が書いた関数には絶対パスが必要ですが、シンボリックリンクは解決されていません。」
結局のところ、これは彼の質問にあまり適していないと思います。 :)
何年もこれに何度も遭遇し、今回はOSXとlinuxで使用できる純粋なbashポータブルバージョンが必要だったので、次のように書きました。
生きているバージョンはここにあります:
https://github.com/keen99/Shell-functions/tree/master/resolve_path
しかし、SOのために、現在のバージョンはここにあります(十分にテストされていると感じていますが、フィードバックを受け付けています!)
プレーンボーンシェル(sh)で動作させるのは難しくないかもしれませんが、私は試しませんでした...私は$ FUNCNAMEが大好きです。 :)
#!/bin/bash
resolve_path() {
#I'm bash only, please!
# usage: resolve_path <a file or directory>
# follows symlinks and relative paths, returns a full real path
#
local owd="$PWD"
#echo "$FUNCNAME for $1" >&2
local opath="$1"
local npath=""
local obase=$(basename "$opath")
local odir=$(dirname "$opath")
if [[ -L "$opath" ]]
then
#it's a link.
#file or directory, we want to cd into it's dir
cd $odir
#then extract where the link points.
npath=$(readlink "$obase")
#have to -L BEFORE we -f, because -f includes -L :(
if [[ -L $npath ]]
then
#the link points to another symlink, so go follow that.
resolve_path "$npath"
#and finish out early, we're done.
return $?
#done
Elif [[ -f $npath ]]
#the link points to a file.
then
#get the dir for the new file
nbase=$(basename $npath)
npath=$(dirname $npath)
cd "$npath"
ndir=$(pwd -P)
retval=0
#done
Elif [[ -d $npath ]]
then
#the link points to a directory.
cd "$npath"
ndir=$(pwd -P)
retval=0
#done
else
echo "$FUNCNAME: ERROR: unknown condition inside link!!" >&2
echo "opath [[ $opath ]]" >&2
echo "npath [[ $npath ]]" >&2
return 1
fi
else
if ! [[ -e "$opath" ]]
then
echo "$FUNCNAME: $opath: No such file or directory" >&2
return 1
#and break early
Elif [[ -d "$opath" ]]
then
cd "$opath"
ndir=$(pwd -P)
retval=0
#done
Elif [[ -f "$opath" ]]
then
cd $odir
ndir=$(pwd -P)
nbase=$(basename "$opath")
retval=0
#done
else
echo "$FUNCNAME: ERROR: unknown condition outside link!!" >&2
echo "opath [[ $opath ]]" >&2
return 1
fi
fi
#now assemble our output
echo -n "$ndir"
if [[ "x${nbase:=}" != "x" ]]
then
echo "/$nbase"
else
echo
fi
#now return to where we were
cd "$owd"
return $retval
}
醸造のおかげで、ここに古典的な例があります:
%% ls -l `which mvn`
lrwxr-xr-x 1 draistrick 502 29 Dec 17 10:50 /usr/local/bin/mvn@ -> ../Cellar/maven/3.2.3/bin/mvn
この関数を使用すると、-real-パスが返されます。
%% cat test.sh
#!/bin/bash
. resolve_path.inc
echo
echo "relative symlinked path:"
which mvn
echo
echo "and the real path:"
resolve_path `which mvn`
%% test.sh
relative symlinked path:
/usr/local/bin/mvn
and the real path:
/usr/local/Cellar/maven/3.2.3/libexec/bin/mvn