How do I get awk to run shell scripts?

Use the system() function, e.g.:

cmd = "/bin/echo hello";
system(cmd);
close(cmd);

You can run anything you want with system(), not just shell scripts

 

 

 

출처 : http://hibernia.jakma.org/~paul/awk-faq.html#system

'c or linux' 카테고리의 다른 글

아파치의 rewriteRule 문제점  (0) 2008.02.28
gethostbyname, getaddrinfo 사용한 샘플 소스  (0) 2008.02.26
쉘 스크립트에서의 함수 파라미터  (0) 2007.09.11
ulimit  (0) 2007.09.10
crontab 에러  (0) 2007.09.08
Posted by '김용환'
,