diff options
Diffstat (limited to 'ptmp')
-rwxr-xr-x | ptmp | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -0,0 +1,37 @@ +#!/bin/sh +# Copyright 2020 Ryan Kavanagh <rak@rak.ac> +# Upload as temporary file +# +# Permission to use, copy, modify, and/or distribute this software for +# any purpose with or without fee is hereby granted, provided that the +# above copyright notice and this permission notice appear in all +# copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL +# WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE +# AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +# DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA +# OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +# TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +# PERFORMANCE OF THIS SOFTWARE. + +DEST_DIR=hades.rak.ac:public_tmp +OPT_SUFFIX="" + +while getopts s: f +do + case $f in + s) + OPT_SUFFIX=".${OPTARG}";; + esac +done +shift `expr $OPTIND - 1` + +PAD=$(md5sum $1 | cut -f1 -d' ') + +DEST_NAME="${PAD}.$1${OPT_SUFFIX}" + +scp $1 "${DEST_DIR}/${DEST_NAME}" + +echo "https://rak.ac/~tmp/${DEST_NAME}" |