mirror of
https://github.com/A2osX/A2osX.git
synced 2024-11-03 12:06:05 +00:00
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
NEW
|
||
AUTO 3,1
|
||
.LIST OFF
|
||
.OP 65C02
|
||
.OR $2000
|
||
.TF BIN/MV
|
||
*--------------------------------------
|
||
.INB INC/MACROS.I
|
||
.INB INC/A2OSX.I
|
||
.INB INC/MLI.I
|
||
.INB INC/MLI.E.I
|
||
*--------------------------------------
|
||
X.ENTER.SUBDIR .EQ 0
|
||
X.COPY.TO.DEST .EQ 1
|
||
X.DELETE.SOURCE .EQ 1
|
||
*--------------------------------------
|
||
.INB USR/SRC/BIN/X.CPMVRM.S
|
||
.INB USR/SRC/BIN/X.FILEENUM.S
|
||
*--------------------------------------
|
||
CS.END
|
||
*--------------------------------------
|
||
OptionList .AS "CRYQcryq"
|
||
OptionVars .DA #bContinue,#bRecurse,#bNoConfirm,#bQuiet,#bContinue,#bRecurse,#bNoConfirm,#bQuiet
|
||
*--------------------------------------
|
||
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"
|
||
MSG.DIR .AZ "MV Dir :%s to %s..."
|
||
MSG.FILE .AZ "MV File:%s to %s..."
|
||
MSG.OVERWRITE .AZ "Overwrite %s [Yes,No,All]?"
|
||
MSG.OK .AZ "[OK]"
|
||
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
|
||
.INB USR/SRC/BIN/X.CPMVRM.G
|
||
.INB USR/SRC/BIN/X.FILEENUM.G
|
||
DS.END
|
||
.ED
|
||
*--------------------------------------
|
||
MAN
|
||
SAVE USR/SRC/BIN/MV.S
|
||
ASM
|