I am trying to write a shell script that takes the first word given to it as one argument and anything that comes after it as a second argument.
The user must call my shell script and provide their arguments in one line from the terminal: shellscript.sh word1 word2 word3 ...... wordn How can I write my script such that
arg1 = word1
arg2 = word2 - wordn?