Arguments to scripts work in exactly the same way they do for functions:
- You can get the arguments as positional parameters with "$1", "$2", "$3", and so on
- You can dynamically get all of the positional parameters without having to count them with "$@"
- You can count the number of positional parameters if you need to with "$#"