3

I tried to do in tcsh the following:

$ echo $(pwd) 

It does not work.

muru
  • 207,228
Josef Klimuk
  • 1,636

1 Answers1

5

Command substitution in tcsh is done using backticks: `...`

~> echo `pwd`
/home/muru
muru
  • 207,228