# file xx.sh # allegedly perl script . "$1" #### # yy.sh a sh script to be executed echo "hello there i am calling from within yy.sh" #### $ chmod 755 xx.sh $ xx.sh yy.sh hello there i am calling from within yy.sh