카테고리 없음
Difference between $() and () in Bash
4번독수리
2019. 11. 20. 10:29
$(cmd) substitutes the result of cmd as a string, whereas (cmd; cmd) run a list of commands in a subprocess.
https://stackoverflow.com/questions/39110485