I am writing a simple shell script that fetches output from one command and uses it in another.

 app=$(./twiddle.sh  -u $1 -p $2 query jboss.web.deployment:* | grep $3)
 doop=$(./twiddle.sh -u $1 -p $2 invoke jboss.system:MainDeployer $4 $app)

++ ./twiddle.sh -u admin -p password invoke jboss.system:MainDeployer stop $'jboss.web.deployment:war=worker.war,id=1518231766\r'

I see in the above commands that the app is coming of value:

$'jboss.web.deployment:war=worker.war,id=1518231766\r'

But if I do echo $app then I am not seeing the quotes and \r appended, How can I ensure app is sent without quotes as an input to another command? I am not sure where the problem is - I cannot see this as the output when I execute the commands outside of shell.

Thanks for any help.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 0 down vote accepted

sed will work nicely for this:

sh  -u $1 -p $2 query jboss.web.deployment:* | grep $3 | sed 's/\'//g' | sed 's/\r//g'
link|improve this answer
It worked by doing this: app=echo $app | sed 's/\r//g' – Anna Aug 25 '10 at 12:29
glad you got working.... – ennuikiller Aug 25 '10 at 13:00
grep pattern | sed 's/from/to/g' is often not needed, as sed has a built-in grep: sed -ne '/pattern/s/from/to/gp' often saves a fork. And sed can even do several substitutions saving yet another fork... – Jens May 16 at 20:15
feedback
doop=$(./twiddle.sh -u $1 -p $2 invoke jboss.system:MainDeployer $4 "$app")

You should use echo with quotes if you don't want the contents be interpreted by the shell. If you don't want characters like ' be interpreted too, use printf: printf '%s' "$app"

link|improve this answer
No adding quotes did not remove the problem. – Anna Aug 25 '10 at 11:22
Did you try the second thing, with printf? Like this: doop=$(./twiddle.sh -u $1 -p $2 invoke jboss.system:MainDeployer $4 "printf '%s' "$app"") – Lekensteyn Aug 25 '10 at 11:32
feedback

Your Answer

 
or
required, but never shown

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