Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
weird zsh problem with background procs and scripts
- X-seq: zsh-users 10593
- From: Tyler Spivey <tspivey@xxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: weird zsh problem with background procs and scripts
- Date: Sat, 12 Aug 2006 15:35:15 -0700
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
If you put the following into a loop it won't work. Is there a
workaround?
#!/bin/zsh
while :;do
ed &
jobs
sleep 1
done
this should launch a bunch of eds int he background, but only seems to
load one.
zsh -x shows that it's not even taking the &.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author