aboutsummaryrefslogtreecommitdiff
path: root/bin/ptmp
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2021-12-13 17:23:42 -0500
committerRyan Kavanagh <rak@rak.ac>2021-12-13 17:23:42 -0500
commite1096db47d332f2e4bfb4f38d262bb94e69d9ad5 (patch)
tree1b26b1fedacd307a115cb3a963c8cc8a60a18e96 /bin/ptmp
parenttypo (diff)
set exec and stuff
Diffstat (limited to 'bin/ptmp')
-rwxr-xr-xbin/ptmp50
1 files changed, 0 insertions, 50 deletions
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 <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`
-
-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}"