Skip to content

Instantly share code, notes, and snippets.

View geirawsm's full-sized avatar

geirawsm

  • Norway
View GitHub Profile
@geirawsm
geirawsm / upgrade_pullio.sh
Created July 7, 2025 18:49
Simple bash script for upgrading pullio from github
pullio_up () {
_promptyn () {
if [[ -z $1 ]]; then
echo "_promptyn misses text"
else
while true; do
read -rp "$1 " yn
case "${yn:-$2}" in
[Yy]* ) return 0;;
[Nn]* ) return 1;;