I have the following comand:
grep RJAVA | grep -v grep | wc -l ' | sort | cut -d':' -f2 | cut -d' ' -f2
After executing this, I get the following result :
10 0 0 10
I would like to put all these numbers into a bash array so that I can loop through the array. I tried using xargs but couldn't make it work. Any suggestion ?