Like this:
Code:
#/bin/sh
# File: firstscript.sh
/path/to/secondscript.sh arg1 arg2 arg3
Code:
#/bin/sh
# File: secondscript.sh
# $0 contains the name of the script itself
# $1...$9 contain the first...nineth argument of the script
echo "Scriptname = $0"
echo "Argument #1 = $1"
echo "Argument #2 = $2"
echo "Argument #3 = $3"