From 7ad4e3bd34b7f4738582e3efeaa8ed18dc8803ff Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Sat, 26 Sep 2020 18:09:36 -0400 Subject: temp file host --- bin/ptmp | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 bin/ptmp diff --git a/bin/ptmp b/bin/ptmp new file mode 100755 index 0000000..e2446c5 --- /dev/null +++ b/bin/ptmp @@ -0,0 +1,42 @@ +#!/bin/sh +# Copyright 2020 Ryan Kavanagh +# 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` + +FILE="$@" + +PAD=$(md5sum "${FILE}" | cut -f1 -d' ') +BASE=$(basename "${FILE}") + +DEST_NAME="${PAD}.${BASE}${OPT_SUFFIX}" + +echo "${DEST_NAME}" + +scp "${FILE}" "${DEST_DIR}/${DEST_NAME}" + +echo "https://rak.ac/~tmp/${DEST_NAME}" -- cgit v1.2.3