ほとんどの場合、ゼロ以外のステータスのエラーで停止したいtcshシェルスクリプトを持っていますが、場合によってはそれを無視したいです。例えば:
#!/bin/tcsh -vxef
cp file/that/might/not/exist . #Want to ignore this status
cp file/that/might/not/exist . ; echo "this doesn't work"
cp file/that/must/exist . #Want to stop if this status is nonzero