Josef Klimuk Asked: 2017-09-11 20:20:24 +0800 CST2017-09-11 20:20:24 +0800 CST 2017-09-11 20:20:24 +0800 CST What is the analog of '$()' in tcsh? 772 I tried to do in tcsh the following: $ echo $(pwd) It does not work. tcsh 1 Answers Voted Best Answer muru 2017-09-11T20:24:54+08:002017-09-11T20:24:54+08:00 Command substitution in tcsh is done using backticks: `...` ~> echo `pwd` /home/muru
Command substitution in tcsh is done using backticks:
`...`