From e1096db47d332f2e4bfb4f38d262bb94e69d9ad5 Mon Sep 17 00:00:00 2001 From: Ryan Kavanagh Date: Mon, 13 Dec 2021 17:23:42 -0500 Subject: set exec and stuff --- bin/ptmp | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100755 bin/ptmp (limited to 'bin/ptmp') diff --git a/bin/ptmp b/bin/ptmp deleted file mode 100755 index e42c695..0000000 --- a/bin/ptmp +++ /dev/null @@ -1,50 +0,0 @@ -#!/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="$@" - -if command -v md5sum >/dev/null; then - MD5=md5sum; -elif command -v md5 >/dev/null; then - MD5="md5 -r"; -else - echo "No md5 found"; -fi - -PAD=$(${MD5} "${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