2010-11-18 3 views

답변

0
$ your_script your...really...long...parameter 

:

#!/bin/ksh 
do_something_with "$1" 

또는 your_script가 구성

$ command_with_large_output | your_script 

:

#!/bin/ksh 
while read -r line 
do 
    do_something_with "$line" 
done 

다른 조합이 가능합니다.

관련 문제