I essentially call a python script through an alias from the terminal:
alias dos='python /path/to/script.py' .
This will run the python script.py in the current directory from where I launch it.
I would like to do something like that, from the terminal, for exaple:
dos 1 2
so that the code will read the input values 1 and 2, and be able to assign their values to some variables in the code.
How is the proper way to do it?