What determines which shell Perl will use as default when passed a command in backticks?

Perl will use /bin/sh. You might consider using ksh's -c switch to run the command.

system('/usr/bin/ksh', '-c', 'ls -l');    # For example.

On closer inspection though, it looks like you are trying to do that. I'm not sure exactly what you are asking. What you have won't do though. You might want to have a look at IPC::Open2 and Expect.

As for eliminating the need to backwhack everything, read perldoc -f quotemeta.

Update: The backticks in this snippet of code aren't doing anything for you:

$cmds[0] = "`su $user -c \"ksh -c $action \"`";
That's the same as if you typed `su THE_USER -c "ksh -c THE_ACTION"` at the shell prompt. This would be a lot easier to read:
$cmds[0] = qq(su $user -c "ksh -c $action");

Also, if this is a short script and you just need to bang something out, you might find its easier just to call the command with system rather than trying to open a pipe from it. It'll do the right thing with your file descriptors so that you can enter the password and read or redirect the output.

perl -e '$user="whoever"; $action="whatever"; system "su", $user, "-c" +, "ksh -c $action");'
-sauoq
"My two cents aren't worth a dime.";

In reply to Re: External Ksh Commands by sauoq
in thread 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.