#!/bin/csh -f
#  see if ps -ef is to show all the process
#  of ps aux is that one.
#  ps aux or ps -ef is returned
#
(ps -ef > /dev/null) >& /dev/null
if( $status == 0 ) then
        echo "ps -ef"
        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

