Tagged Questions
The backticks tag has no wiki summary.
24
votes
7answers
5k 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 Python? I've tried ...
8
votes
5answers
1k views
Batch equivalent of Bash backticks
When working with Bash, I can put the output of one command into another command like so:
my_command `echo Test`
would be the same thing as
my_command Test
(Obviously, this is just a ...
7
votes
2answers
328 views
How do I mock Perl's built-in backticks operator?
I'd like to unit test a Perl program of mine that is using backticks. Is there a way to mock the backticks so that they would do something different from executing the external command?
Another ...
7
votes
4answers
2k 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 pipe as in:
open ...
6
votes
5answers
231 views
Weird backticks behaviour in Active Record in Code Igniter 2.0.3
Previously my all queries were running fine in CI version 2.0 but when I upgraded to 2.0.3 some of my SELECT queries were broken.
CI is adding backticks (``) automatically, but in older version its ...
5
votes
2answers
1k 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 shell script?
...
4
votes
2answers
718 views
Display output of a Bash command and keeping the output in a variable
I'm not sure if it is possible but what I want to do is to run a bash command and storing the output in a variable AND display it as if I launched the command normally. Here is my code:
VAR=`svn ...
3
votes
4answers
111 views
How to capture both STDOUT and STDERR in two different variables using Backticks in Perl
Let's say I want to run an external program from my script with backticks and at the same time I want to capture both STDOUT and STDERR but in two different variables. How can I do that? For istance ...
3
votes
1answer
134 views
Is it possible to set an environment variable to the output of a command in cmd.exe
I need to do the equivalent of
set ENVAR=`some-command`
In a windows/cmd.exe script. Cygwin is not an option.
For bonus marks: Is there some cmd.exe equivalent of backticks in general?
3
votes
7answers
5k 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 call prints all its ...
2
votes
1answer
39 views
What is the difference between backticks and $() in bash script?
I see in bash scripts two different forms which seems to do the same:
`some command`
and
$(some command)
What is the difference between the two, and when should I use each one of them?
2
votes
4answers
113 views
Evaluating command with Awk
The problem is that: I have different txt files in which is registered a timestamp and an ip address for every malware packet that arrives to a server. What I want to do is create another txt file ...
2
votes
3answers
122 views
How do I grep for a backtick?
So I'm trying to find backticks (`) in files, so I ran:
grep -irl '\`' ./*
This seems to return every single file possible...
What else can I try?
2
votes
1answer
50 views
Mysql not giving Syntax error when it should
I am trying with following query
SELECT COUNT(*)
FROM users`
WHERE email = 'xyz@xyz.com'
This is not giving me syntax error (notice not include ` character at the starting of table name). And ...
2
votes
1answer
229 views
perl: Here documents inside backtick operator
Given a program utility that takes commands from stdin and returns a useful exit code, this perl syntax works:
my $result = `utility -switch1 -switch2 <<HERE
set ridin_round_the_world TRUE;
do ...
2
votes
2answers
185 views
wrong use of backticks execution?
I tried to run a command by reading it from a textfile, but it failed. when i enter the exact same line it is working, tough. im suprised that it did even try to execute the move command, but got an ...
2
votes
4answers
660 views
Problem with backticks in shellscript
I am having a problem getting my shellscript working using backticks. Here is an example version of the script I am having an issue with:
#!/bin/sh
ECHO_TEXT="Echo this"
ECHO_CMD="echo ${ECHO_TEXT} ...
2
votes
5answers
742 views
Escape whitespace when using backticks
I've had a search around, and from my perspective using backticks is the only way I can solve this problem. I'm trying to call the mdls command from Perl for each file in a directory to find it's last ...
2
votes
4answers
310 views
creating tidy shell script from ugly command line pipeline
I wrote a piped shell command that has multiple pipes in it that works great. I now want to put this in the form of a (tidy) shell script. Here is the script:
#!/bin/bash
for number in `cat ...
2
votes
3answers
1k views
Why does my Perl backticks complain “sh: line 1: any: command not found”?
I've never programmed before, but needed to write a very simple webapp for work.
I'm trying to get this dig query to work:
dig @8.8.8.8 +nocomments +nostats +noquestion +nocmd google.com any
With ...
2
votes
3answers
1k 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.
So why does
echo ...
1
vote
3answers
87 views
Dynamic Perl find and replace using grep inside backticks
I am trying to do a dynamic search and replace with Perl on the command line with part of the replacement text being the output of a grep command within backticks. Is this possible to do on the ...
1
vote
2answers
76 views
Bash and MySQL variables problem
I have the following script:
#!/bin/sh
Q=`</dev/urandom tr -dc A-Za-z0-9 | head -c30`
mysql -uusername -ppasword accounts -e "update forum set key='$Q' where id='1';"
I have to add ...
1
vote
2answers
98 views
How to catch PHP backtick operator usage via PHP_CodeSniffer?
I've studied some "sniffs" from the "Generic" and "Squiz" coding standards that come with CodeSniffer version 1.3, and learned enough to write a few "custom" sniffs to catch some coding anti-patterns ...
1
vote
2answers
108 views
Inability to capture output from “dd” using backticks
I've been working with a very old Solaris system and not in a position to add more modules to make my life easier, and I'm working with a number of scripts that use various command line options.
The ...
1
vote
3answers
350 views
Common Lisp Backquote/Backtick: How to Use?
I am having trouble with Lisp's backquote read macro. Whenever I try to write a macro that seems to require the use of embedded backquotes (e.g., ``(w ,x ,,y) from Paul Graham's ANSI Common Lisp, ...
1
vote
3answers
359 views
perl two consecutive back ticked shell command do not run
I am trying to write perl script for managing amazon ec2 instances. In part of my code, I have two shell commands, and when I invoke them, the first runs but not the second. I cannot seem to find a ...
1
vote
1answer
207 views
Problem with backticks in multi-threaded Perl script on Windows
I have a trouble with the following very simple and small Perl script on Windows platform.
use strict;
use warnings;
use threads;
use threads::shared;
my $print_mut : shared;
my $run_mut : shared;
...
1
vote
3answers
179 views
How to pass shell wildcards into a backtick command
I am trying to use find in a shell script to count the number of files I have matching a wildcard pattern, then to get the name of the file if there is only one. But I'm having trouble passing the ...
1
vote
1answer
389 views
Capturing “command not found” errors from Ruby's backticks?
Is there a way to capture a "command not found" error in a Ruby script? For instance, given:
output = `foo`
How do I trap the situation where foo isn't installed? I expected that I could rescue an ...
1
vote
1answer
297 views
ksh not evaluating variable within backticks
This one has me stumped.
#!/bin/ksh
AWKSCRIPT='END { print "all done"; }'
OUTPUT=`echo hello world | awk '$AWKSCRIPT'`
RETVAL=$?
echo "running echo hello world | awk '$AWKSCRIPT'"
echo "Output = ...
1
vote
2answers
572 views
Bash: escape characters in backticks
I'm trying to escape characters within backticks in my bash command, mainly to handle spaces in filenames which cause my command to fail.
The command I have so far is:
grep -Li badword `grep -lr ...
1
vote
1answer
127 views
How do I receive command output immediately?
I'm using perl back-ticks syntax to run some commands.
I would like the output of the command to written to a file and also printed out to stdout.
I can accomplish the first by adding a > at the ...
1
vote
3answers
245 views
In Python 2.x, using backticks to get decimal string from int object is Horrible?
In Python 2.x, using backticks to get decimal string from int object is Horrible?
Because backticks are repr(), not str()? I have noticed that when I answering this question.
In Python source, they ...
1
vote
1answer
720 views
What are the differences between backtick and single quote? Can I use IF statement in a query as above?
In the codeigniter manual writes the following.
$this->db->select() accepts an
optional second parameter. If you set
it to FALSE, CodeIgniter will not try
to protect your field or table ...
1
vote
3answers
1k views
Escape backquote in a double-quoted string in shell
For the command: /usr/bin/sh -c "ls 1`" (a backquote after 1).
How to make it run successfully? Adding a backslash before "`" does not work.
` is a special char as we know, and I tried surrounding ...
1
vote
1answer
160 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 need to use backticks ...
1
vote
1answer
1k views
MySQL : When stored procedure parameter name is the same as table column name [continue]
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 to set customer's name. If I ...
0
votes
1answer
26 views
Rename a MySQL column containing ` in the column name
So, the other guy at work created a table with a column called:
Max(`abs_spg_20090430`.`ID`)
this is giving me an error now that I am trying to run a dump of the database on a different server. ...
0
votes
4answers
126 views
Use of pipes in backticks
I'm trying to run a command with a pipe but receive errors:
echo abc | `echo "grep a | grep b"`
grep: |: No such file or directory
grep: grep: No such file or directory
grep: b: No such file or ...
0
votes
1answer
141 views
How to send cp a list of filenames (with spaces)
Egrep is generating for me a list of files based on their contents, but I'm doing something wrong trying to pass that list to cp as arguments. (My shell is bash). I thought I'd escape the spaces in ...
0
votes
1answer
186 views
equivalent of unix `` (backticks) in DOS? [closed]
Possible Duplicate:
Batch equivalent of Bash backticks
In unix we use `` for command output substitution.
e.g.
export a=`pwd`
Is there any equivalent for this (``) in DOS command ...
0
votes
3answers
330 views
Ruby replace text within single quotes or backticks for html tag
Hello I am trying to build a simple action in Ruby that takes one string like
result = "This is my javascript variable 'var first = 1 + 1;' and here is another 'var second = 2 + 2;' and that's it!"
...
0
votes
3answers
305 views
Nested backticks in bash script not working
I'm trying the following in a bash script:
COUNT=`cat "$NEWLIST" | wc -l | awk \' { print $1 } \` `
where NEWLIST is a string containing a list of files, one per line. But I get this error:
...
0
votes
2answers
584 views
CakePHP ODBC driver connecting to Microsoft SQL Server; how to remove backticks?
I've got a CakePHP application connecting to a remote MSSQL server through ODBC, but it's not working as planned. Every query dies becasue it is trying to put backticks around identifiers, which is ...
0
votes
1answer
398 views
Why can't I echo an acute accent in PHP?
echo 'ยด';
just shows a question mark. I also tried with double quotes, but the same thing happens. I even tried adding a backslash in case it is an escaped character, but that just prints the ...
0
votes
2answers
54 views
What do backticked options mean?
I noticed this command:
gcc -Wall `libnet-config --defines` libnet-example-x.c -o libnet-example-x `libnet-config --libs`
What is the meaning of libnet-config --defines and libnet-config --libs?
0
votes
4answers
1k views
perl backticks: use bash instead of sh
I noticed that when I use backticks in perl the commands are executed using sh, not bash, giving me some problems.
How can I change that behavior so perl will use bash?
PS. The command that I'm ...
0
votes
2answers
182 views
Perl regex matching output from `w -hs` command
I'm trying to write a Perl script that will work better with KDE's kwrited, which, as far as I can tell, is connected to a pts and puts every line it receives through the KDE system tray notifications ...
0
votes
2answers
145 views
MySQL grouping by a previously declared alias, what do I wrap it in? ' OR `
I have an SQL query that has an alias in the SELECT statement
SELECT
CONCAT(YEAR(r.Date),_utf8'-',_utf8'Q',QUARTER(r.Date)) AS 'QuarterYear'
Later, I want to refer to this in my group by ...