; Get the source & dest args specified on the command-line
; get the command line as an array - elements 0 & 1 are the kix.exe and the script.kix items
$aCmdLine = GetCommandLine(1)
; scan the array looking for the source arg
$ = AScan($aCmdLine, '--s:', , , 1) ; get SOURC arg
If $ > 1 ;
$Source = SubStr($aCmdLine[$], 5)
Else ; arg is required - die if not provided
'ERROR: Source was not specified!' @CRLF @CRLF
'Usage: myscript.kix --S:Source_path --D:destination_path' @CRLF
Quit 1
EndIf
; scan the array looking for the destination arg
$ = AScan($aCmdLine, '--d:', , , 1) ; get destination arg
If $ > 1 ;
$Dest = SubStr($aCmdLine[$], 5)
Else ; arg is required - die if not provided
'ERROR: Destination was not specified!' @CRLF @CRLF
'Usage: myscript.kix --S:Source_path --D:destination_path' @CRLF
Quit 1
EndIf