backticks not working anymore
by lostinxlation from LinuxQuestions.org on (#55H1V)
hi
I have been using `command` (with backticks) heavily for many years, but I recently discovered it didn't work anymore.
the following worked before, but not anymore on tcsh.
> grep abc `find . -name "*" -type f -print`
Q&As on some websites say `command` and $(command) are same, and I tried grep abc $(find . -name "*" -print), but it didn't work either.
What's the alternative of `command` on tcsh ?


I have been using `command` (with backticks) heavily for many years, but I recently discovered it didn't work anymore.
the following worked before, but not anymore on tcsh.
> grep abc `find . -name "*" -type f -print`
Q&As on some websites say `command` and $(command) are same, and I tried grep abc $(find . -name "*" -print), but it didn't work either.
What's the alternative of `command` on tcsh ?