* ファイル(入力)読み込み [#jc8df1bd]

** 標準入力の読み込み [#y533efca]
 while read line; do
     echo DEBUG: $line    
 done

** ファイルの読み込み [#eb15c2bf]
 cat /etc/passwd | while read line; do
     echo DEBUG: $line    
 done

あるいは

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


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