in reply to Re: using backticks to pass commands
in thread using backticks to pass commands

I'm unable to install the modules as I don't have root access on the box.

Replies are listed 'Best First'.
Re^3: using backticks to pass commands
by choroba (Cardinal) on Jan 22, 2013 at 15:05 UTC
Re^3: using backticks to pass commands
by Anonymous Monk on Jan 22, 2013 at 15:08 UTC

    Well, installing CPAN modules without root is possible, but maybe it's not necessary to go that far just yet. (I just think IPC::System::Simple::capture is nice because it gives helpful error messages too.)

    1. What are the characters that you think need to be escaped? (I don't see any in the command line you showed.)
    2. Why do you have a backslash before the final backtick? (Are you trying to pass a backtick to the command? If not, maybe that's the problem?)
    3. Is that an empty string you're trying to pass after "127.0.0.1"?
    4. What error message are you getting?
    5. Does running the command from a normal command line work?
    6. What OS are you on / what's your default shell?

    If passing the empty string is the problem (which works on my system), one solution could be the aforementioned piped open. Otherwise, you've got another problem and the above info would help.