From 3034767608f862c62565c8e449a5e200279f31c0 Mon Sep 17 00:00:00 2001 From: alf Date: Thu, 23 Apr 2026 20:17:51 +0000 Subject: [PATCH] =?UTF-8?q?paste=5Fholen.sh=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- paste_holen.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 paste_holen.sh diff --git a/paste_holen.sh b/paste_holen.sh new file mode 100644 index 0000000..26647af --- /dev/null +++ b/paste_holen.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +PASTE_ID="$1" # Aufruf: ./paste_holen.sh abc123 + +if [ -z "$PASTE_ID" ]; then + echo "Verwendung: $0 " + exit 1 +fi + +curl -s "https://pastebin.com/raw/$PASTE_ID" +