Pro tip: Combine curl using file descriptor with `<( )` process substitution. Like:
```bash
curl -d @<(grep "stuff" myfile) http://example.com
```
No fd number needed, but same idea—no temp files.
Gotchas? Uh, make sure your data isn’t too big for pipes. Buffering can bite you.
```bash
curl -d @<(grep "stuff" myfile) http://example.com
```
No fd number needed, but same idea—no temp files.
Gotchas? Uh, make sure your data isn’t too big for pipes. Buffering can bite you.
