#!/bin/bash # special.sh test echo "Name of the script: $0" # /home/richard/scripts/special.sh echo "Total number of arguments: $#" # 1 echo "Values of all the arguments is: $@" # test