Really simple....
Use the $<number> notation.
[12:02pm] kelly (~) # sh test.sh hello again
The first argument is hello , the second argument is again
[12:02pm] kelly (~) # cat test.sh
#!/bin/sh
echo ""
echo "The first argument is $1 , the second argument is $2"
echo ""
exit 0