2010-11-18 14 views

cevap

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

:

#!/bin/ksh 
do_something_with "$1" 

veya your_script oluşur

$ command_with_large_output | your_script 

:

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

Başka kombinasyonlar da mümkündür.