Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 66 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
share|improve this answer
1  
Can we provide some separator for multi line output ? – Aryan Feb 21 at 12:26

You're using the wrong kind of apostrophe. You need `, not '. This character is called "backticks" (or "grave accent").

Like this:

#!/bin/bash

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

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

echo $MOREF
share|improve this answer

Just to be different:

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

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.

share|improve this answer

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.

share|improve this answer

protected by Community Apr 19 at 16:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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