#!/bin/csh -f

set n=$#argv
if ($n >= 2) then
  @ m=$n - 1
  set cmd=$argv[$m]
  set num=$argv[$n]
  if(($cmd == "bsf" || $cmd == "fsf" || $cmd == "fsr" || $cmd == "bsr") && $num == 0) then
    exit 0
  endif
endif

exec mt $*
