md-notes/bash.md

8 lines
177 B
Markdown
Raw Normal View History

2022-07-25 13:05:35 +02:00
# 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
```