test.sh hinzugefügt

This commit is contained in:
klaas 2025-03-26 21:11:04 +01:00
parent a51266a206
commit 9530e7200f
1 changed files with 13 additions and 0 deletions

13
test.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
DEBUG=true # oder false
pause_if_debug() {
if [ "$DEBUG" = true ]; then
read -rp "🔍 DEBUG: Drücke [Enter] um fortzufahren..."
fi
}
echo "📦 Starte Paketinstallation..."
pause_if_debug
echo "✅ Fertig mit der Installation."