> > > > > > You can't do anything with /usr this early. This needs > > > to be moved to _find_processes() where it's actually used. > > > I suspect it should also be converted to pure shell code. > > > I think this would work: > > > > > > for ent in `ps -p $$ -o jid`; do >> > JID=$ent > > > done You might want to change this to: for ent in `ps -p $$ -o jid=`; do JID=$ent done (adding '=' on 'jid', to get rid of the column header) -- Garance Alistair Drosehn = drosehn_at_rpi.edu Senior Systems Programmer or gad_at_FreeBSD.org Rensselaer Polytechnic Institute; Troy, NY; USAReceived on Wed Apr 12 2006 - 17:20:39 UTC
This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:38:54 UTC