# csh/tcsh aliases for use with cvs # a useful alias alias cvscheck "cvs -n up | & grep '^[CMUPAR]'" # another formulation of that useful alias alias cvscheck "cvs -n up |& grep -v '^cvs update'" # and another alias cvscheck "cvs -n up |& grep -v '^cvs update' | grep -v '^cvs server'" # sometimes you forget spaces alias cvsup "cvs up"