IIRC, (t)csh doesn't support more than one level of command substitution. However, you can always convert such expressions to use xargs. $ vi `grep -il create \`find . -type f\` `
becomes $ find . -type f | xargs grep -il create | xargs -o vi
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.