So führen Sie eine Aktion für jede Zeile in Bash durch
while read line
do
echo $line
// or some_function "$line"
done < testfile.txt
m1ke510a
while read line
do
echo $line
// or some_function "$line"
done < testfile.txt