1 # $NetBSD: TEST.csh,v 1.2 1995/03/21 07:03:59 cgd Exp $
2 # @(#)TEST.csh 5.2 (Berkeley) 4/30/93
4 #alias t '/usr/src/bin/test/obj/test \!*; echo $status'
5 alias t '/bin/test \!*; echo $status'
49 echo 't -r /etc/master.passwd'
50 t -r /etc/master.passwd
73 echo 't -w /etc/master.passwd'
74 t -w /etc/master.passwd
95 echo 't "hello" = "hello"'
97 echo 't "hello" = "goodbye"'
100 echo 't "hello" != "hello"'
102 echo 't "hello" != "goodbye"'
103 t "hello" != "goodbye"
135 echo 't 700 -le 1000 -a -n "1" -a "20" = "20"'
136 t 700 -le 1000 -a -n "1" -a "20" = "20"
137 echo 't ! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)'
138 t ! \( 700 -le 1000 -a -n "1" -a "20" = "20" \)