sumar y restar parametros es un programa que te permite proporcionar varios números como parámetros al ejecutarlo. Luego, suma o resta estos números y te muestra el resultado.
Utilizando autoit
$totalparametros = $CmdLine[0]
$capturaroperacion = "nada"
MsgBox(0, "Bienvenidos a sumatorio", "El nombre del programa es:" & @ScriptName)
If $CmdLine[1] = "suma" Then
$capturaroperacion = "Suma"
EndIf
If $CmdLine[1] = "resta" Then
$capturaroperacion = "Resta"
EndIf
$totaloperacion = 0
For $i = 2 To $totalparametros
If $capturaroperacion = "Suma" Then
$totaloperacion = $CmdLine[$i] + $totaloperacion
EndIf
If $capturaroperacion = "Resta" Then
If $i = 2 Then
; Si es el primer número en la resta, restar de 0
$totaloperacion = $CmdLine[$i]
Else
; Restar los números siguientes
$totaloperacion = $totaloperacion - $CmdLine[$i]
EndIf
EndIf
Next
MsgBox(0, "numeros", $CmdLineRaw)
MsgBox(0, "operacion", $totaloperacion)
se debe utilizar el CMD