Mine
public text v1 · immutable#!/bin/bash
FILE=foo.txt
while read line
do
if [ "$line" = 456 ]; then
echo yoohoo; fi
done < $FILE
#!/bin/bash
FILE=foo.txt
while read line
do
if [ "$line" = 456 ]; then
echo yoohoo; fi
done < $FILE