Como obter scripts na mesma pasta Bash

SCRIPT=`realpath $0`
SCRIPTPATH=`dirname $SCRIPT`

bash $SCRIPTPATH your_script
Hutch Polecat