환경변수 설정방법을 알려주세요. 환경 변수를 xml 파일로 지정해야 합니다.
답변1
sh 유형 쉘에서:
YOURVARIABLE='/path/to/file'
export YOURVARIABLE
csh 유형 쉘에서:
setenv YOURVARIABLE '/path/to/file'
답변2
시스템 전체 환경 변수를 설정하려면 /etc/environment 파일에 이름-값 쌍(YOUR_VARIABLE=/path/to/file)을 추가합니다. 원천:http://www.eguys.org/2012/04/system-wide-environment-variables.html