Typically, command line parameters are typed on the same line as the command. Those parameters may be replaced at any time with the set command:
#!/bin/sh echo "Current parameters are $*." set `date +%B` echo "The current month is $1."
Or, if there were no parameters on the commands line, set would create the parameters.