+++ date="2022-11-30" author="spanskiduh" title="bash" description="click to read about bash" +++ # Bash ### Read file line by line using bash Gotta love those oneliners ;) ```bash while read line; do printf "$line\n"; printf "other commands\n"; done < /etc/passwd ```