A2osX/BIN/MV.S.txt

53 lines
1.4 KiB
Plaintext
Raw 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/mv
*--------------------------------------
2018-07-23 15:28:42 +00:00
.INB INC/MACROS.I
.INB INC/A2OSX.I
2018-12-20 07:33:10 +00:00
.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 1
2019-10-03 06:25:27 +00:00
X.DELETE.SOURCE .EQ 1
*--------------------------------------
2018-11-17 17:17:13 +00:00
.INB USR/SRC/BIN/X.CPMVRM.S
.INB USR/SRC/BIN/X.FILEENUM.S
*--------------------------------------
CS.END
*--------------------------------------
2019-10-28 06:32:12 +00:00
OptionList .AS "CRYQcryq"
OptionVars .DA #bContinue,#bRecurse,#bNoConfirm,#bQuiet,#bContinue,#bRecurse,#bNoConfirm,#bQuiet
*--------------------------------------
2019-10-28 06:32:12 +00:00
MSG.USAGE .AS "Usage : MV [Src File/Dir, *,? wildcards allowed]\r\n"
.AS " -C : Continue on error\r\n"
.AS " -Q : Quiet\r\n"
.AS " -R : Recurse subdirectories\r\n"
.AZ " -Y : Dont't prompt for override\r\n"
2019-01-17 15:05:48 +00:00
MSG.DIR .AZ "MV Dir :%s to %s..."
2020-02-29 14:06:28 +00:00
MSG.REG .AZ "MV File:%s to %s..."
2019-02-26 16:50:42 +00:00
MSG.OVERWRITE .AZ "Overwrite %s [Yes,No,All]?"
2018-08-23 15:16:20 +00:00
MSG.OK .AZ "[OK]"
2019-10-28 06:32:12 +00:00
MSG.ERR .AS "[%h]"
MSG.CRLF .AZ "\r\n"
MSG.DONE .AZ "%D File(s) Moved.\r\n"
*--------------------------------------
.DUMMY
.OR 0
DS.START
bContinue .BS 1
bRecurse .BS 1
bNoConfirm .BS 1
bQuiet .BS 1
2018-11-17 17:17:13 +00:00
.INB USR/SRC/BIN/X.CPMVRM.G
.INB USR/SRC/BIN/X.FILEENUM.G
DS.END
.ED
*--------------------------------------
MAN
2018-11-17 17:17:13 +00:00
SAVE USR/SRC/BIN/MV.S
ASM