From bc591dcedf45b80f70661f33c42c68dbd581e901 Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Mon, 11 Aug 2025 17:36:57 +0200 Subject: Migrate to RDE --- files/.bin/file_upload.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100755 files/.bin/file_upload.sh (limited to 'files/.bin/file_upload.sh') diff --git a/files/.bin/file_upload.sh b/files/.bin/file_upload.sh deleted file mode 100755 index 0ff6c57..0000000 --- a/files/.bin/file_upload.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -BOLD="\e[1"; -ENDCOLOR="\e[0m"; -Green="32m"; -LightRed="31m"; - -echo "" -echo -e $BOLD";"";"$Green" FILE UPLOADER"$ENDCOLOR -echo "" - -if ! [ $1 ]; then - echo "" - echo -e $BOLD";"";"$LightRed" Please provide file path!"$ENDCOLOR - echo "" - exit -fi - -if [ $1 ]; then - echo -e " Are u sure u want upload this file: "$BOLD";"";"$Green" '$1'"$ENDCOLOR"? [y/N]: " - read -p " " input - echo "" - # read -r -p " " input - case $input in - [yY][eE][sS]|[yY]) - URL=$(curl -s -F "file=@$1" https://0x0.st); - echo -e " URL: "$BOLD";"";"$Green"$URL"$ENDCOLOR; - ;; - [nN][oO]|[nN]) - echo -e $BOLD";"";"$Green" OK"$ENDCOLOR; - ;; - *) - echo -e $BOLD";"";"$LightRed" Invalid input..."$ENDCOLOR; - exit 1 - ;; - esac - echo "" -fi; -- cgit v1.2.3