home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PDA Software Library
/
pdasoftwarelib.iso
/
PILOT
/
PC
/
HP-LX2
/
INSIT.AWK
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
AWK Script
|
1996-06-27
|
101 b
|
11 lines
BEGIN {
FS=" "
}
{
printf $1 "|"
for (n=2;n<=NF;n++)
printf $n " ";
printf "\n"
}