feat(L01): add BusyBox multicall console card

This commit is contained in:
user
2026-07-21 17:51:28 +02:00
commit 798e96b94b
39 changed files with 7204 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
root="${CARD_ROOT:-$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)}"
task="${1:?task name is required}"
case "$task" in task01_multicall_dispatch|task02_files_and_text|task03_process_and_host) ;; *) printf 'Unknown task: %s\n' "$task" >&2; exit 2 ;; esac
exec env CARD_ROOT="$root" "$root/src/tasks/$task.sh"