3 lines
171 B
Bash
3 lines
171 B
Bash
$ VAR=`echo hello` # obsolescent backtick notation
|
|
$ VAR=$(echo hello) # modern POSIX notation
|
|
$ (echo hello) # execute in another shell process, not in this one
|