annotate scripts/send.sh @ 95:01e478158d87 release/v1.1.0

flow: Created branch 'release/v1.1.0'.
author smith@nwoca.org
date Mon, 10 Apr 2017 18:26:14 +0100
parents f04f13a1d5d8
children 8f45c43ea7a4
rev   line source
63
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
1 #!/bin/bash
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
2 file=${1?"Usage: $0 filename [name]\n specify the filename relative to the current directory or - for stdin.\noptionally specify a short name (default to base directory)"}
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
3 if [ "$file" != "-" ]
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
4 then
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
5 file="/tmp/${file}"
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
6 fi
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
7 name=${2:-$(basename $PWD)}
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
8 source=$(hostname)
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
9 docker run -i -v /ssdt:/ssdt -v ${PWD}:/tmp --rm docker.ssdt.io/ssdt-utils \
f04f13a1d5d8 add script to send file to ssdt upload server
smith@nwoca.org
parents:
diff changeset
10 curl -F source=$source -F name=$name -F file=@$file https://upload.ssdt.io/upload