Command line parameters The shell script sample: #!/gnu/usr/bin/bash while [ $# -ge 2 ]; do echo "$1" "$2" shift done bash$ sample a bc defgh a bc bc defgh