テキストファイルを1行ずつ読み込む

テキストファイルを1行ずつ読み込んで処理するサンプルです。


FILE=/etc/hosts

while read line ; do
    echo ${line}

done < ${FILE}

コメント