I need to run Korn shell (ksh) commands within Perl scripts as a different user than the script is running as. So far I am not too happy with what I have written. I need a sort of seemless way to use ksh as the external shell when I use backticks or run a shell command, even if it requires a password and runs as a different use. Any help will be greatly appreciated.

I know about Shell and Shell::Source CPAN modules. What determines which shell Perl will use as default when passed a command in backticks? What can I do to avoid escaping character after character?

my $action = "\'( cd $path && tar cf - . )|( cd $targ && tar xBf - )\' +"; $cmds[0] = "`su $user -c \"ksh -c $action \"`"; foreach my $cmd (@cmds) { eval { print "Please enter $user password\n"; open( CMD, "$cmd |" ) or die "Error: $!\n"; }; if ($@) { die "Error: could not copy files: $dest: $@\n"; } while ( <CMD> ) { print "COMMAND: $_\n"; } } # end foreach



In reply to External Ksh Commands by hackdaddy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.