Aggiungi altre parentesi, come questa:
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
Vedi anche bash
— Array.
Usa il mapfile incorporato di Bash (o il suo sinonimo readarray
)
mapfile -t -s 1 myarr < <(ps -u myusername | awk '{print $1}')
Almeno in GNU/Linux puoi formattare l'output di ps
, quindi non c'è bisogno di awk
e -s 1
mapfile -t myarr < <(ps -u myusername -o pid=)