annotate scripts/send.sh @ 63:f04f13a1d5d8

add script to send file to ssdt upload server
author smith@nwoca.org
date Fri, 11 Mar 2016 16:39:37 +0000
parents
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