Sh script

This commit is contained in:
Corey Smith
2025-07-19 01:01:48 -07:00
parent 532c8aab23
commit 72c8545913

View File

@ -1,6 +1,11 @@
#!/bin/bash
#!/bin/sh
KIOSK_URL="${1:-https://example.com}"
if [ -z "$1" ]; then
echo "Enter kiosk URL (e.g., https://dashboard.company.com):"
read -r KIOSK_URL
else
KIOSK_URL="$1"
fi
echo "Setting up Alpine Linux Kiosk..."
echo "Kiosk URL: $KIOSK_URL"