Y
Hacker News
new
|
ask
|
show
|
jobs
by
andrewvc
4782 days ago
The subshell syntax is there, it just looks different. Instead of: echo `mycmd`. It's echo (mycmd).
1 comments
omaranto
4782 days ago
I think you're getting your terminology mixed up: the bash man page calls what you described command substitution. Launching a subshell is something different and in bash it is done with parenthesis.
link