* ファイル(入力)読み込み [#jc8df1bd]
** 標準入力の読み込み [#y533efca]
*** 標準入力を読み込む [#s425410c]
read input
echo DEBUG: $input
*** CTRL+DでEOFシグナルが受け取るまで、入力を読み込み続ける [#r85e54e7]
while read line; do
echo DEBUG: $line
done
** ファイルの読み込み [#eb15c2bf]
cat /etc/passwd | while read line; do
echo DEBUG: $line
*** 1行読み込む [#f5a41b40]
read firstline < /etc/passwd
echo DEBUG: $firstline
*** 全行読み込む [#ra0ee7fc]
cat /etc/passwd | while read current_line; do
echo DEBUG: $current_line
done
あるいは
while read line; do
echo DEBUG: $line
done < /etc/passwd