home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
SASC6571.LZX
/
rexx
/
deletetabs.se
< 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
Text File
|
1996-12-24
|
239 b
|
13 lines
/* rexx macro to replace tabs with spaces throughout file */
/* Tab mode must be set to EXPAND TO SPACES for this to work */
'BT'
'SE "\\t\n"'
do forever
options results
'GE'
options
if result ~= 0 then exit(0)
'DC "\t"'
'PC SA'
end