On Thu, Aug 28, 2008 at 12:23 PM, kumars <[EMAIL PROTECTED]> wrote: > ipcrm -m | ipcs -m | cut -d ' ' -f 5 | grep "^[1-9]"
Largely off topic for this group, but... You probably want some backticks in there rather than using a pipe - something akin to ipcrm -m `ipcs -m | cut -d ' ' -f 5 | grep "^[1-9]"` Pipes only work the way you're trying if the commands concerned can take their arguments from stdin. -- PJH http://shabbleland.myminicity.com/sec
