lunedì 30 gennaio 2012

Shell Script esempio ciclo while

#!/usr/bin/ksh
while :
do
 read a b c d e f g h
if [ $? -ne 0 ]
        then
                break
        fi

echo $1,$2,$3,$4,$5,$6,$7,$8 >> /tmp/alarm.sandro

done < /tmp/allarmi.txt

Nessun commento: