I always cringe when I see shell code like this > cat /etc/passwd | cut -f1 -d: Usually this comes as > ps -ef | grep something | grep -v grep | grep -v $myownpid why not use one simple and concise awk statement…
I always cringe when I see shell code like this > cat /etc/passwd | cut -f1 -d: Usually this comes as > ps -ef | grep something | grep -v grep | grep -v $myownpid why not use one simple and concise awk statement…