Comment effectuer une action pour chaque ligne en bash

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