eval [arg ...] The args are read and concatenated together into a single command. This command is then read and executed by the shell, and its exit status is returned as the value of eval. If there are no args, or only null arguments, eval returns 0. |
변수들을 합쳐주고, 실행까지 해준다고 한다.
export 명령어를 args에 넣고 하면 가능할 듯하다.
물론 child process를 생성해서 실행하게 되므로 export를 한다고 해도,
변수의 값이 변경되거나 생성되지는 않는다.(스크립트 종료와 함께 사라짐)
[링크 : http://www.unix.com/unix-dummies-questions-answers/43969-set-variable-awk-output.html]
'Linux' 카테고리의 다른 글
grep -r 옵션은 주의! (0) | 2009.08.06 |
---|---|
쉘스크립트 - 변수 / 변수 치환 (2) | 2009.08.04 |
/proc/cmdline 내용 읽어오기 (0) | 2009.08.03 |
setenv() - change or add an environment variable (4) | 2009.08.03 |
파일내용을 변수로 읽어오기(쉘 스크립트) (1) | 2009.08.01 |