I have a windows batch file that outputs a file and takes in 4 variables.
batch.exe output_file.txt -1 dummy_variable1 -2 dummy_variable2 -3 dummy_variable3 -4 dummy_variable4
I want to run this command periodically, say after 1 minute, passing in a different output file name and different variables. Is there a way to do this without manually having to type the command and input the output file name and variables each time? For example, edit the command in a script and then echo it to the terminal each time to run it.