summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/argarray.awk
diff options
context:
space:
mode:
authorjraynard <jraynard@FreeBSD.org>1998-03-10 19:28:47 +0000
committerjraynard <jraynard@FreeBSD.org>1998-03-10 19:28:47 +0000
commit400707d96e5c70bee16528b39c8c50582bc33ee2 (patch)
treee88511c889ed08581fe58afedc6e526e887556e2 /contrib/awk/test/argarray.awk
parent552164a7bbd88c1701ff5efb8a6e5727586b1b3d (diff)
downloadFreeBSD-src-400707d96e5c70bee16528b39c8c50582bc33ee2.zip
FreeBSD-src-400707d96e5c70bee16528b39c8c50582bc33ee2.tar.gz
Remove test sub-directory.
Diffstat (limited to 'contrib/awk/test/argarray.awk')
-rw-r--r--contrib/awk/test/argarray.awk14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/awk/test/argarray.awk b/contrib/awk/test/argarray.awk
deleted file mode 100644
index 1960f9bd..0000000
--- a/contrib/awk/test/argarray.awk
+++ /dev/null
@@ -1,14 +0,0 @@
-BEGIN {
- argn = " argument" (ARGC > 1 ? "s" : "")
- are = ARGC > 1 ? "are" : "is"
- print "here we have " ARGC argn
- print "which " are
- for (x = 0; x < ARGC; x++)
- print "\t", ARGV[x]
- print "Environment variable TEST=" ENVIRON["TEST"]
- print "and the current input file is called \"" FILENAME "\""
-}
-
-FNR == 1 {
- print "in main loop, this input file is known as \"" FILENAME "\""
-}
OpenPOWER on IntegriCloud