ファイルを一行ずつ処理 Posted Dec 24, 2019 By rengotaku 1 min read read を使用する。$ cat list.txt line 1 line 2 line 3 END $ while read LINE; do echo ${LINE}; done < ./list.txt line 1 line 2 line 3 END devtools shell linux This post is licensed under CC BY 4.0 by the author. Share