Tagged Questions

0
votes
1answer
30 views

Why sshfs does not work with backtick?

When I do the following: `sshfs my@host.com /tmp/dir1/` in a irb console, the console freezes. If I use something like system("sshfs my@host.com /tmp/dir1/") it works, but I ne …
2
votes
3answers
105 views

bash: Using sed in backticks

I want to escape some special chars inside a string automatically. I thought of echoing that string and pipe it through some seds. This doesn't seem to work inside of backticks. S …
2
votes
4answers
259 views

Equivalent of Backticks in Python

What is the equivalent of the backticks found in Ruby and Perl in Python? That is, in Ruby I can do this: foo = `cat /tmp/baz` What does the equivalent statement look like in Py …
-1
votes
1answer
67 views

character for single quote

(backtick) and ' are two different characters for single quote. I have a mysql script that shows the former two quote characters, if I change them to ', it breaks the syntax. how …
2
votes
7answers
553 views

How do I get the output of curl into a variable in Perl if I invoke it using backtics?

I'm trying to get the response of a curl call into a variable in perl. my $foo = `curl yadd yadda`; print $foo; does not work. When I run this at the command line the curl ca …
0
votes
1answer
524 views

MySQL : When stored procedure parameter name is the same as table column name [continue]

Hello, Let's say a have a stored procedure SetCustomerName which has an input parameter Name, and I have a table customers with column Name. So inside my stored procedure I want …
4
votes
4answers
478 views

What’s the differences between system and backticks and pipes in Perl?

Perl supports three ways (that I know of) of running external programs: system: system PROGRAM LIST as in: system "abc"; backticks as in: `abc`; running it through a p …
3
votes
2answers
442 views

How to flush output in backticks In Perl?

If I have this perl app: print `someshellscript.sh`; that prints bunch of stuff and takes a long time to complete, how can I print that output in the middle of execution of the …