Skip to content

Instantly share code, notes, and snippets.

View Manuelmik's full-sized avatar

Manuel Mike Manuelmik

View GitHub Profile
@Manuelmik
Manuelmik / install_LDB.sh
Last active September 12, 2025 10:22
Install Script MW Pi
#!/bin/bash
echo "Do you want to want to continue when errors occur?"
echo "This is useful if something went wrong and you run the sript for the seccond time."
ask() {
read -p "Skip errors? (Y/[N]): " confirm
if [[ $confirm == [yY] ]]; then
echo "skipping errors"
elif [[ $confirm == [nN] ]]; then