Today I needed to write a bash script that eventually calls another program, passing all the arguments to it. It seemed like a simple enough task: just use
$@. However, the problem was that the program accepts arguments surrounded with quotes, and the
$@ stripped the quotes away. I was really surprised that google didn't immediately find an answer.
Finally I reached this forum:
http://www.linuxforums.org/forum/linux-programming-scripting/62564-bash-script-problem-preserving-quotes-arguments.htmlAnd to save you the trouble, here's a script that preserves the quotes:
#!/bin/bash
# blah blah blah
./foo "$@"
For more on posts, see here.
thank you :)
ReplyDeletethank you. you address me to fix that problem.
ReplyDeleteinsightful
ReplyDeleteBecause of your post, it now popped up in google quite soon, thanks!
ReplyDeleteWow, it took me a full day to figure out what was wrong with my script, and I could finally fix it with your help. Thanks.
ReplyDeleteThanks!
ReplyDeleteA bash function that returns each paramenter (whether it contains spaces and quotes or not) in its own line, like $1 \n $2 \n $3 .... surrounded by quotes. With that you can solve everything
ReplyDelete