I have two scripts, namely shell_script.sh
and perl_script.pl
.
shell_script.sh
: It has function definitions which, when invoked from Perl script, will execute certain commands on Linux in batch mode.
perl_script.pl
: It has the code and logic to be implemented, which functions to invoke etc.
The content of shell_script.sh
file is as under:
bash-4.2$ cat shell_script.sh
#!/bin/bash
# Function Definitions
func_1 ()
{
echo "function definition"
}
func_2 ()
{
echo "function definition"
}
The content of perl_script.pl
file is as under:
bash-4.2$ cat perl_script.pl
#!/usr/bin/perl
use Getopt::Long;
my $var1;
my $var1;
GetOptions("var1=s" => \$var1,
"var2=s" => \$var2,
"help|?" => \$help );
if ($help)
{
HelpMenu();
}
print " Can I call the func_1 (defined in shell script) with arguments here..?? (in this perl script)";
How can i invoke the function func_1()
(which is defined in shell_script.sh
) in the perl script perl_script.pl
?
To invoke a shell function, the shell needs to know its definition. One way to achieve that is to have the shell first
source
the file which defines the function. And then, without exiting the shell, call the function. From a Perl script, that would be for example:To use
bash
functions you need to be inbash
. So in a Perl script that puts you inside backticks orsystem
, where you are inside abash
process†. Then, inside that process, you cansource
the script with functions, what will bring them in, and execute themfuncs.sh
and in Perl (one-liner)
where qx is the same as backticks but perhaps clearer. I use backticks in case you need return from those functions. If your
/bin/sh
isn't linked tobash
† then callbash
explicitlyAssignment to an array puts
qx
in list context, in which it returns theSTDOUT
of what it ran as a list of lines. This can be used to separate return from different functions, if they return a single line each. Thea1,a2
andb1,b2
are arguments passed tof1
andf2
.Prints
This makes some (reasonable) assumptions.
If there is no need for the return, but the functions only need to do their thing, you can use
as in Håkon's answer
† It is
/bin/sh
really, but that is often relegated tobash
. Check your system (/bin/sh
is likely a link to another shell). Or ensure thatbash
runs the commandSee text for the explanation of this example.
It's overkill for this problem, but
Env::Modify
provides a way to make shell functions available in Perl. WithEnv::Modify
, you could, say, import the shell functions once and use them over and over again in subsequencesystem
calls.