home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
DEMOS
/
UB_68020.LZH
/
rm.b
< prev
next >
Wrap
Text File
|
1996-05-06
|
455b
|
23 lines
* "quick and dirty" rm program for use with UniBasic Compiler
*
dim filename:string[12]
on error goto badfile
lp
filename=NextArg
if len(filename)=0 then
end
endif
if filename="-?" or filename="--help" then
print
print "rm filename... filename"
print
print "remove (delete) filename(s) from disk"
print
end
endif
delete filename
goto lp
badfile
print "cannot remove ";filename
print "cannot remove ";filename