Fügen Sie zusätzliche Klammern wie folgt hinzu:
myarr=($(ps -u kdride | awk '{ print $1 }'))
# Now access elements of an array (change "1" to whatever you want)
echo ${myarr[1]}
# Or loop through every element in the array
for i in "${myarr[@]}"
do
:
echo $i
done
Siehe auch bash
— Arrays.
Verwenden Sie das eingebaute Mapfile von Bash (oder sein Synonym readarray
)
mapfile -t -s 1 myarr < <(ps -u myusername | awk '{print $1}')
Zumindest in GNU/Linux können Sie die Ausgabe von ps
formatieren , also keine Notwendigkeit für awk
und -s 1
mapfile -t myarr < <(ps -u myusername -o pid=)