I am working on a simple scripting project for work that involves the use of BASH. I have a pretty simple script that is something like the following:

#!/bin/bash

VAR1="$1"
VAR2="$2"

MOREF='sudo run command against $VAR1 | grep name | cut -c7-'

echo $MOREF

When I run this script from the command line and pass it the arguments I am not able to get any output. However, when I run the commands contained within the MOREF variable, I am able to get output. I would like to know how one can take the results of a command that needs to be run within a script, save it to a variable, and then output that variable on the screen?

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

In addition to the backticks, you can use $(), which I find easier to read, and allows for nesting.

OUTPUT=$(ls -1)
echo $OUTPUT
link|improve this answer
feedback

You're using the wrong kind of apostrophe. You need `, not '. This character is called a grave accent.

Like this:

#!/bin/bash

VAR1="$1"
VAR2="$2"

MOREF=`sudo run command against $VAR1 | grep name | cut -c7-`

echo $MOREF
link|improve this answer
feedback

Just to be different:

MOREF=$(sudo run command against $VAR1 | grep name | cut -c7-)
link|improve this answer
feedback

As they have already indicated to you, you should use 'backticks'.

The alternative proposed $(command) works as well, and it also easier to read, but note that it is valid only with bash or korn shells (and shells derived from those), so if your scripts have to be really portable on various Unix systems, you should prefer the old backticks notation.

link|improve this answer
feedback

You should surround the command in backticks:

OUTPUT=`ls -l`
echo $OUTPUT

Putting a command in backticks executes it and returns the output without printing it on the screen.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.