In bash, I am trying to launch several xeyes at once.
If I do this:
for a in `seq 1 3`; do "xeyes"; done
I get 1 xeye and the subsecuent xeyes comes up only when I close the previous xeye.
Therefore, I tried:
for a in `seq 1 3`; do "xeyes &"; done
But on running this command, nothing happens.
What could I be doing wrong?