diff options
author | jraynard <jraynard@FreeBSD.org> | 1997-10-14 18:17:11 +0000 |
---|---|---|
committer | jraynard <jraynard@FreeBSD.org> | 1997-10-14 18:17:11 +0000 |
commit | 5cffd06d9dff241b1cfa78a8039972b9368e5cc2 (patch) | |
tree | 5c6bc638fe385e88fcc4d588090c50e902d4995c /contrib/awk/test/splitargv.in | |
parent | 60aed874ba23ae327f34ccc7b28642c36f0c9845 (diff) | |
parent | a46c41193ff2573a4c910e19b570e9c253e714a1 (diff) | |
download | FreeBSD-src-5cffd06d9dff241b1cfa78a8039972b9368e5cc2.zip FreeBSD-src-5cffd06d9dff241b1cfa78a8039972b9368e5cc2.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r30411,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/awk/test/splitargv.in')
-rw-r--r-- | contrib/awk/test/splitargv.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/awk/test/splitargv.in b/contrib/awk/test/splitargv.in new file mode 100644 index 0000000..10886ef --- /dev/null +++ b/contrib/awk/test/splitargv.in @@ -0,0 +1,7 @@ +BEGIN { + for (idx = 1; idx < ARGC; idx++) + split(ARGV[idx], temp, "."); + } + { + print $0; + } |