TAR sample file
tar_sample_file_200KB.tar
210.0 KB
application/x-tar
SHA256 verified
File details
Filename
tar_sample_file_200KB.tarSize210.0 KB (215040 bytes)
MIME type
application/x-tarExtension
.tarSHA256
3ac737eefc67cc8b286486d9b68dcfa7416f6b1ddddddf8f486ce88a76be0aeaDownload commands
Use in scripts and tests
curl -L -o tar_sample_file_200KB.tar \
https://samplefile.com/samples/download/archive/tar/tar_sample_file_200KB.tar/
wget -O tar_sample_file_200KB.tar \
https://samplefile.com/samples/download/archive/tar/tar_sample_file_200KB.tar/
import requests
url = "https://samplefile.com/samples/download/archive/tar/tar_sample_file_200KB.tar/"
resp = requests.get(url)
with open("tar_sample_file_200KB.tar", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/archive/tar/tar_sample_file_200KB.tar/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("tar_sample_file_200KB.tar", buf);
# Download and verify SHA256
curl -L -o tar_sample_file_200KB.tar https://samplefile.com/samples/download/archive/tar/tar_sample_file_200KB.tar/
echo "3ac737eefc67cc8b286486d9b68dcfa7416f6b1ddddddf8f486ce88a76be0aea tar_sample_file_200KB.tar" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/archive/tar/tar_sample_file_200KB.tar/").content
assert hashlib.sha256(data).hexdigest() == "3ac737eefc67cc8b286486d9b68dcfa7416f6b1ddddddf8f486ce88a76be0aea"
More TAR files
Other TAR Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
tar_sample_file_1MB.tar |
1.0 MB | 3a3b81dc89c35728… |
Download |
tar_sample_file_500KB.tar |
510.0 KB | 57545627be4d956f… |
Download |
tar_sample_file_50KB.tar |
60.0 KB | 91d23e189dda99e1… |
Download |
Learn more