Linux2009. 8. 3. 17:31
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]
Posted by 구차니