Jak wykonać akcję dla każdej linii w Bash

while read line
do
   echo $line
   // or some_function "$line"
done < testfile.txt
m1ke510a