-O is my go-to for quick downloads, but -o is clutch for batch scripts.
Example:
```
curl -o "download_$(date +%F).zip" https://example.com/file.zip
```
Saves with a timestamp—no duplicates!
Also, if you’re on Windows, watch out for spaces in -o filenames. Quotes are your BFF.
Example:
```
curl -o "download_$(date +%F).zip" https://example.com/file.zip
```
Saves with a timestamp—no duplicates!
Also, if you’re on Windows, watch out for spaces in -o filenames. Quotes are your BFF.
