aboutsummaryrefslogtreecommitdiffstats
path: root/test/up_down.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:41:09 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:41:09 +0300
commit8c042f99cc7465c86351d21331a129111b75345d (patch)
tree9656e653be0e42e5469cec77635c20356de152c2 /test/up_down.awk
parent8ceb5f934787eb7be5fb452fb39179df66119954 (diff)
downloadegawk-8c042f99cc7465c86351d21331a129111b75345d.tar.gz
egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.bz2
egawk-8c042f99cc7465c86351d21331a129111b75345d.zip
Move to gawk-3.0.0.
Diffstat (limited to 'test/up_down.awk')
-rw-r--r--test/up_down.awk15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/up_down.awk b/test/up_down.awk
deleted file mode 100644
index 32ab847c..00000000
--- a/test/up_down.awk
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- lim = split ($0, line)
- out = ""
- if (lim > 0) {
- i = 0
- while (i < lim) {
- i++
- if (i % 2)
- out = out sprintf("%s ", toupper(line[i]))
- else
- out = out sprintf("%s ", tolower(line[i]))
- }
- }
- print out
-}