Question #65

Author: admin
tags: Linux  
Can the command substitution syntax be nested?
No.
Yes, but only in $() form.
Yes, in all forms.
Examples of nested command substitution syntax:
mkdir $(echo $(echo somedir))
mkdir `echo \`echo somedir\``
Rate the difficulty of the question:
easyhard