Good While Loop To Go Through Each Line Of A File file="/path/to/file" while read line; do echo "${line}" done < "${file}" Previous Next