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

標準入力の読み込み

標準入力を読み込む

 read input
 echo DEBUG: $input

CTRL+DでEOFシグナルが受け取るまで、入力を読み込み続ける

 while read line; do
     echo DEBUG: $line    
 done

ファイルの読み込み

1行読み込む

 read firstline < /etc/passwd
 echo DEBUG: $firstline

全行読み込む

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

あるいは

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

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2012-05-20 (日) 18:31:32