Skip to content

Instantly share code, notes, and snippets.

View auxbh's full-sized avatar
:octocat:

auxbh

:octocat:
View GitHub Profile
@echo off
set "OptionsPath=..\..\Option"
ECHO 1. AOLD Only
ECHO 2. AKON Only
ECHO 3. Both AOLD and AKON
ECHO 4. Neither AOLD or AKON
CHOICE /C 1234 /M "Enter your choice:"
@auxbh
auxbh / build-ios.sh
Last active November 2, 2025 17:01
#!/bin/bash
# Default answer for deleting or not the repository folder at the end
answer="noanswer"
# Parse command-line options
while getopts ":yn" opt; do
case $opt in
y)
answer="y"