diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-02-13 21:51:50 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-02-13 21:51:50 +0200 |
commit | 4c82793760b88c55ca18cdbdfb819c3ea98cfa91 (patch) | |
tree | 6275eb83725f0fe7b0fd802365f20d662936975c /test/argcasfile.awk | |
parent | bda8b5661127de0c16343fdfb8e4060803503d72 (diff) | |
download | egawk-4c82793760b88c55ca18cdbdfb819c3ea98cfa91.tar.gz egawk-4c82793760b88c55ca18cdbdfb819c3ea98cfa91.tar.bz2 egawk-4c82793760b88c55ca18cdbdfb819c3ea98cfa91.zip |
Fix assigning to ARGC on command line and add test.
Diffstat (limited to 'test/argcasfile.awk')
-rw-r--r-- | test/argcasfile.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/argcasfile.awk b/test/argcasfile.awk new file mode 100644 index 00000000..489f25ca --- /dev/null +++ b/test/argcasfile.awk @@ -0,0 +1 @@ +{ for (i in ARGV) print i,ARGV[i] } |