z6c - personal blog about topics

Christian Müller – Letzte Änderung: 06.12.2015 23:01 Uhr

Kurztipp Bash: Variablen in Array -> For Loop

# Unix=('Debian' 'Red hat' 'Ubuntu' 'Suse' 'Fedora' 'UTS' 'OpenLinux'); 
# for x in "${Unix[@]}"; do echo $x; done
Debian
Red hat
Ubuntu
Suse
Fedora
UTS
OpenLinux

Kommentare / Diskussion: