Files
UgPod/run.sh
2025-12-28 02:09:53 +00:00

6 lines
158 B
Bash
Executable File

#!/usr/bin/env bash
mapfile -t tracks < <(
find "music/pink floyd/dark side of the moon" -type f -iname '*.flac' | sort -V
)
exec bin/player "${tracks[@]}"