in reply to Re^4: backticks and quotation trouble in bash
in thread backticks and quotation trouble in bash
In bash, you can't nest backticks, but you can nest the newer, more flexible "$()" construct:
echo "$( command arg arg '$( nested_command arg arg )' )"
|
|---|