#!/bin/bash

# playing with command-line arguments
#
# by: Sharon Tuttle
# last modified: 2022-09-12

echo Here is the 1st command-line argument: [$1]
echo Here is the 2nd command-line argument: [$2]

echo The calling script is: [$0]

echo This call had $# command line arguments.

echo What is \$\*? [$*]

echo What is \$\@? [$@]