ファイル(入力)読み込み

標準入力の読み込み

 while read line; do
     echo DEBUG: $line    
 done

ファイルの読み込み

 cat /etc/passwd | while read line; do
     echo DEBUG: $line    
 done

あるいは

 while read line; do
     echo DEBUG: $line    
 done < /etc/passwd

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS