Skip to content

Instantly share code, notes, and snippets.

View mleukering's full-sized avatar

Matthew Leukering mleukering

  • Cincinnati, Ohio
View GitHub Profile
@mleukering
mleukering / s3etag.sh
Last active December 18, 2018 16:36 — forked from emersonf/s3etag.sh
A Bash script to compute ETag values for S3 multipart uploads on OS X.
#!/bin/bash
if [ $# -ne 2 ]; then
echo "Usage: $0 file partSizeInMb";
exit 0;
fi
file=$1
if [ ! -f "$file" ]; then