aboutsummaryrefslogtreecommitdiff
path: root/coreutils-5.3.0-bin/share/awk/rewind.awk
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils-5.3.0-bin/share/awk/rewind.awk')
-rw-r--r--coreutils-5.3.0-bin/share/awk/rewind.awk20
1 files changed, 20 insertions, 0 deletions
diff --git a/coreutils-5.3.0-bin/share/awk/rewind.awk b/coreutils-5.3.0-bin/share/awk/rewind.awk
new file mode 100644
index 0000000..a646eac
--- /dev/null
+++ b/coreutils-5.3.0-bin/share/awk/rewind.awk
@@ -0,0 +1,20 @@
+# rewind.awk --- rewind the current file and start over
+#
+# Arnold Robbins, arnold@skeeve.com, Public Domain
+# September 2000
+
+function rewind( i)
+{
+ # shift remaining arguments up
+ for (i = ARGC; i > ARGIND; i--)
+ ARGV[i] = ARGV[i-1]
+
+ # make sure gawk knows to keep going
+ ARGC++
+
+ # make current file next to get done
+ ARGV[ARGIND+1] = FILENAME
+
+ # do it
+ nextfile
+}