Add a SwiftTUI terminal app that lists race runners from the start list and results files, with an interactive menu to sort, filter by age group, toggle finishers vs. non-starters, and live-search by name. Parsing and transforms are written as pure functions over the file contents. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
21 lines
284 B
Bash
Executable file
21 lines
284 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
original_args=("$@")
|
|
|
|
while test $# -gt 0
|
|
do
|
|
case $1 in
|
|
-V)
|
|
# Xcode 15+ needs to know the version of libtool
|
|
exec libtool "${original_args[@]}"
|
|
;;
|
|
*_dependency_info.dat)
|
|
printf "\0 \0" > "$1"
|
|
break
|
|
;;
|
|
esac
|
|
|
|
shift
|
|
done
|