${(U)…}
: Convert to uppercase
U
converts all letters in the result to uppercase.
(L)
is the opposite and converts to lowercase.
Links
Examples
- Convert array values to uppercase
- Output:
1 2
declare data=(joe william jack averell) echo "Dalton brothers: ${(U)data}"
1
Dalton brothers: JOE WILLIAM JACK AVERELL
BashSupport Pro ist eine Zsh IDE mit Unterstützung für ${(U)…} - probieren Sie es jetzt aus!