in reply to How to return value of a variable from shell script to perl script

I like using HEREDOC's like so ...
my $shell_out = <<`SHELL`; diff $file1 $file2 ls -l SHELL print "$shell_out";
  • Comment on Re: How to return value of a variable from shell script to perl script
  • Download Code