For a secure download file curl, always verify hashes! After downloading, compare checksums like:
```
curl -O [url]
shasum -a 256 downloaded_file
```
If the hash matches the source, you’re good. Sites like FileChecksum (https://filechecksum.org) can help verify.
```
curl -O [url]
shasum -a 256 downloaded_file
```
If the hash matches the source, you’re good. Sites like FileChecksum (https://filechecksum.org) can help verify.
