md-notes/bash.md

177 B

Bash

Read file line by line using bash

Gotta love those oneliners ;)

    while read line; do printf "$line\n"; printf "other commands\n"; done < /etc/passwd