spanskiblog/content/posts/bash.md

15 lines
277 B
Markdown

+++
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
```