synchronously execute a terminal command in perl script code example
Example: run bash command perl
system("sh", "script.sh", "--help" );
system("sh script.sh --help");
system("sh", "script.sh", "--help" );
system("sh script.sh --help");