home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume4
/
aaa
/
anon
/
notn
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-11-30
|
279 b
|
9 lines
# Main preprocessing, some more-or-less machine-independent odds and ends
# (two-byte constants (note byte order known)).
/^=/ { # Two-byte constant, low byte first.
print "/" substr($0, 2)
print "\\" substr($0, 2)
next
}
/./ { print } # Something else, leave untouched.