annotate scripts/send.sh @ 138:ddecbf87f5a7 hotfix/v1.1.1

DEP-12: increase usas import memory, disable leak detection in importer
author smith@nwoca.org
date Fri, 16 Jun 2017 16:54:47 +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