Opening a shell script from PERL

Does anyone know how to open a shell script from PERL. The path to the file is this:
~/Library/Scripts/ personal/ perl/permissions.sh

You can either use the exec command or use backticks.

ie "exec (‘/path/to/script.sh’)

or

/path/to/script.sh

also, i think system(“~/Library/Scripts/ personal/ perl/permissions.sh”);