...
When running scripts and software tools, all the inputs you provide to it are called arguments or parameters or options. Each tool/script can be a little different in how it takes its arguments. But typically, they follow a structure.
command <options> inputfile inputfile > outputfile
command -option1 value1 -option2 value2 -option3 inputfile > outputfile
...