#!/usr/local/bin/tcsh -f
#  see if ps -ef is to show all the process
#  or
#  ps aux is that one.
#  "ps aux" or "ps -ef" is returned
#

(ps -efl > /dev/null) >& /dev/null
if( $status == 0 ) then
        echo "ps -efl"
        exit 0
endif
(ps aux > /dev/null) >& /dev/null
if( $status == 0 ) then
        echo "ps aux"
        exit 0
endif
echoErr  "you should modify .myps"
exit 1

