でインデックスを参照することは可能$@
ですか?私は、GrayCatのwikiのどこにも次のように使用する参照を見つけることができません。代わりに、「高度なスクリプトガイド」などが、これを変更する前に別の変数に割り当てます。
$ echo ${@[0]}
-bash: ${@[0]}: bad substitution
目標はDRYです。最初の引数は1つのことに使用され、残りは別の引数に使用されます。正規化するコード、$@
配列、またはこのための個別の関数の重複を避けたいです(ただし、これはおそらくこれが最も簡単な方法です。
明確化:コードをデバッグしやすくするために、可変長 の値を変更することが目的でした。現在のバージョンは私の好みでは少しハックですが、次のような奇妙なパスでも機能します$@
$'--$`\! *@ \a\b\e\E\f\r\t\v\\\"\' \n'
更新:これは不可能のようです。コードはコードとデータの両方の複製を使用しますが、少なくとも機能します。
path_common()
{
# Get the deepest common path.
local common_path="$(echo -n "${1:-}x" | tr -s '/')"
common_path="${common_path%x}"
shift # $1 is obviously part of $1
local path
while [ -n "${1+defined}" ]
do
path="$(echo -n "${1}x" | tr -s '/')"
path="${path%x}"
if [[ "${path%/}/" = "${common_path%/}/"* ]]
then
shift
else
new_common_path="${common_path%/*}"
[ "$new_common_path" = "$common_path" ] && return 1 # Dead end
common_path="$new_common_path"
fi
done
printf %s "$common_path"
}
バウンティは、コードの妥当なサイズを維持し、すべての単体テストを成功させながら、コードの重複を取り除き、重複するスラッシュまたは保持するデータの重複$1
と他のパラメーター、またはその両方を折りたたむことができるすべての人を対象としています。
test "$(path_common /a/b/c/d /a/b/e/f; echo x)" = /a/bx
test "$(path_common /long/names/foo /long/names/bar; echo x)" = /long/namesx
test "$(path_common / /a/b/c; echo x)" = /x
test "$(path_common a/b/c/d a/b/e/f ; echo x)" = a/bx
test "$(path_common ./a/b/c/d ./a/b/e/f; echo x)" = ./a/bx
test "$(path_common $'\n/\n/\n' $'\n/\n'; echo x)" = $'\n/\n'x
test "$(path_common --/-- --; echo x)" = '--x'
test "$(path_common '' ''; echo x)" = x
test "$(path_common /foo/bar ''; echo x)" = x
test "$(path_common /foo /fo; echo x)" = x
test "$(path_common $'--$`\! *@ \a\b\e\E\f\r\t\v\\\"\' \n' $'--$`\! *@ \a\b\e\E\f\r\t\v\\\"\' \n'; echo x)" = $'--$`\! *@ \a\b\e\E\f\r\t\v\\\"\' \n'x
test "$(path_common /foo/bar //foo//bar//baz; echo x)" = /foo/barx
test "$(path_common foo foo; echo x)" = foox
test "$(path_common /fo /foo; echo x)" = x