Hallo pl,
Nicht? Dort: format parameter index
Da steht dasselbe wie ich Dir schon gepostet habe. MfG
Nein.
format parameter index
An explicit format parameter index, such as 2$. By default sprintf will format the next unused argument in the list, but this allows you to take the arguments out of order, e.g.:
printf '%2$d %1$d', 12, 34; # prints "34 12"
printf '%3$d %d %1$d', 1, 2, 3; # prints "3 1 1"
Beachte die beiden Beispiele.
LG,
CK