how to call a bash script using perl

Hi
I m new to perl. I m trying to write a perl script that calls a bash script; does anyone have a script already that they can provide or help me out? Thanks a lot.

Welcome to the forum adnan786.

There are a lot of ways in which you can call a shell script/command from perl script, such as you can use system, exec, or simply backticks. TMTOWTDI.

Reading out Process Management Chapter in Learning Perl would help you much definitely.

thanks. i'll try that