#!/bin/csh -f sleep 1 echo "Tick" sleep 1 echo "Tack"
#!/bin/csh -f while (1) sleep 1 echo "Tick" sleep 1 echo "Tack" end