home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD2.bin
/
bbs
/
gnu
/
gawk-2.15.5-src.lha
/
gawk-2.15.5
/
test
/
up_down.awk
< prev
next >
Wrap
Text File
|
1993-10-20
|
223b
|
16 lines
{
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
}