Unix: How to use Bash backticks recursively

Posted by HH on Stack Overflow See other posts from Stack Overflow or by HH
Published on 2010-04-17T02:43:18Z Indexed on 2010/04/17 2:53 UTC
Read the original article Hit count: 340

Either I missed some backlash or backlashing does not seem to work with too much programmer-quote-looping.

$ echo "hello1-`echo hello2-\`echo hello3-\`echo hello4\`\``"

hello1-hello2-hello3-echo hello4

Wanted

hello1-hello2-hello3-hello4-hello5-hello6-...

© Stack Overflow or respective owner

Related posts about programmer-quotes

Related posts about unix