Files
paste_senden_holen/paste_holen.sh
2026-04-23 20:17:51 +00:00

12 lines
185 B
Bash

#!/bin/bash
PASTE_ID="$1" # Aufruf: ./paste_holen.sh abc123
if [ -z "$PASTE_ID" ]; then
echo "Verwendung: $0 <paste-id>"
exit 1
fi
curl -s "https://pastebin.com/raw/$PASTE_ID"