home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET 2
/
BCI NET 2.iso
/
archives
/
utilities
/
icon
/
iconextras.lha
/
IconExtras
/
Rexx
/
deleteicon.rexx
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1995-01-15
|
300 b
|
9 lines
/* deletes icon of given file/directory */
parse arg filename
address command
filename=strip(filename,'B','"') /* remove quotes */
filename=strip(filename) /* remove spaces */
filename=strip(filename,'T','/') /* Finally, remove trailing slash */
'deleteicon' """"filename".info"""
exit