Tagged Questions
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 ...
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 ...
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
3answers
123 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
2answers
186 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
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
94 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
575 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 ...
0
votes
4answers
127 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
3answers
308 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
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
619 views
creating a file downloading script with checksum verification
I want to create a shellscript that reads files from a .diz file, where information about various source files are stored, that are needed to compile a certain piece of software (imagemagick in this ...