BSD 4_3_Reno development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Wed, 10 Oct 1979 13:34:41 +0000 (05:34 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Wed, 10 Oct 1979 13:34:41 +0000 (05:34 -0800)
Work on file usr/src/usr.bin/awk/test/Compare

Synthesized-from: CSRG/cd2/4.3reno

usr/src/usr.bin/awk/test/Compare [new file with mode: 0755]

diff --git a/usr/src/usr.bin/awk/test/Compare b/usr/src/usr.bin/awk/test/Compare
new file mode 100755 (executable)
index 0000000..d614286
--- /dev/null
@@ -0,0 +1,11 @@
+for i
+do
+       echo $i:
+       awk -f $i foo >junk1 
+       a.out -f $i foo >junk2 
+       if cmp -s junk1 junk2
+       then echo $i: good
+       else echo $i:   BAD
+       fi
+       diff -b junk1 junk2 | ind
+done