A2osX/BIN/RM.S.txt

49 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

NEW
2019-05-02 09:52:32 +00:00
AUTO 3,1
.LIST OFF
.OP 65C02
.OR $2000
2020-02-23 20:46:25 +00:00
.TF bin/rm
*--------------------------------------
2020-05-21 12:55:49 +00:00
.INB inc/macros.i
.INB inc/a2osx.i
.INB inc/mli.i
.INB inc/mli.e.i
*--------------------------------------
2019-04-29 15:47:17 +00:00
X.ENTER.SUBDIR .EQ 0
X.COPY.TO.DEST .EQ 0
X.DELETE.SOURCE .EQ 1
2016-10-30 18:19:43 +00:00
*--------------------------------------
2020-08-25 14:54:30 +00:00
.INB usr/src/shared/x.cpmvrm.s
.INB usr/src/shared/x.fileenum.s
*--------------------------------------
CS.END
2016-10-30 18:19:43 +00:00
*--------------------------------------
OptionList .AS "IiCcQqRr"
OptionVars .DA #0,#0
.DA #bContinue,#bContinue
.DA #bQuiet,#bQuiet
.DA #bRecurse,#bRecurse
2016-10-30 18:19:43 +00:00
*--------------------------------------
MSG.USAGE .CS "Usage : RM [File/Dir, *,? wildcards allowed]\r\n"
.CS " -C : Continue on error\r\n"
.CS " -I <*,? wildcards allowed> : Ignore matching files\r\n"
.CS " -Q : Quiet\r\n"
.CZ " -R : Recurse subdirectories\r\n"
MSG.DIR .CZ "RM Dir :%s..."
MSG.REG .CZ "RM File:%s..."
MSG.OK .CZ "[OK]"
MSG.ERR .CS "[%h]"
MSG.CRLF .CZ "\r\n"
MSG.DONE .CZ "%D File(s) Removed.\r\n"
*--------------------------------------
.DUMMY
.OR 0
DS.START
2020-08-25 14:54:30 +00:00
.INB usr/src/shared/x.fileenum.g
DS.END .ED
*--------------------------------------
MAN
2020-05-21 12:55:49 +00:00
SAVE usr/src/bin/rm.s
ASM