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 ?

有帮助吗?

解决方案

Use backticks instead of quotes:

setenv JAVA_HOME `pwd`
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top