Ist es möglich, auf Indizes in zu verweisen $@
? Ich kann nirgendwo im GrayCat-Wiki einen Verweis finden, der wie folgt verwendet werden kann , und das Advanced Scripting Guide und andere weisen dies einer anderen Variablen zu, bevor sie stattdessen geändert werden.
$ echo ${@[0]}
-bash: ${@[0]}: bad substitution
Das Ziel ist DRY : Das erste Argument wird für eine Sache und der Rest für etwas anderes verwendet, und ich möchte vermeiden, entweder den zu normalisierenden Code $@
oder das Array zu duplizieren oder eine separate Funktion dafür zu erstellen (obwohl dies der Fall ist) Punkt, es ist wahrscheinlich der einfachste Ausweg).
Erläuterung: Ziel war es, die Werte der variablen Länge zu ändern $@
, um das Debuggen des Codes zu vereinfachen. Die aktuelle Version ist etwas zu hackig für meinen Geschmack, obwohl sie auch für bizarre Pfade wie funktioniert
$'--$`\! *@ \a\b\e\E\f\r\t\v\\\"\' \n'
Update : Sieht so aus, als wäre das nicht möglich. Der Code verwendet jetzt sowohl Code- als auch Datenvervielfältigung, funktioniert aber zumindest:
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"
}
Bounty geht an alle , die von der loswerden kann Duplizierung von Code doppelte Schrägstriche oder kollabieren Duplizierung von Daten zu halten $1
und die anderen Parameter, oder beide, während der Code eine vernünftige Größe zu halten und alle die Unit - Tests Erfolg:
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