For those who love one-liners, here’s a neat trick:
```bash
curl -d @<(grep "pattern" your_file.txt) http://example.com
```
This way, you can filter data on the fly and send it directly. No temp files needed!
```bash
curl -d @<(grep "pattern" your_file.txt) http://example.com
```
This way, you can filter data on the fly and send it directly. No temp files needed!
