Question

I'm trying to set my JAVA_HOME using : setenv JAVA_HOME 'pwd' , however , it sets it as pwd , rather than the actual path we get using pwd . I know it might be a stupid question but I'm an absolute newbie to Linux. Using CSH. Is there any way to do so ?

Was it helpful?

Solution

Use backticks instead of quotes:

setenv JAVA_HOME `pwd`
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top