tail, tr: not found when booting
    Garance A Drosehn 
    gad at FreeBSD.org
       
    Wed Apr 12 19:20:39 UTC 2006
    
    
  
>  > >
>  > > 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;  USA
    
    
More information about the freebsd-current
mailing list