prjpeppercorn/delay.sh

17 lines
316 B
Bash
Raw Normal View History

2025-05-27 15:21:14 +02:00
#!/bin/bash
set -e
ARCHIVE="cc-toolchain-linux.tar.gz"
rm -rf delay
mkdir -p delay
wget -O "$ARCHIVE" "https://colognechip.com/downloads/cc-toolchain-linux.tar.gz"
tar --extract \
--file="$ARCHIVE" \
--wildcards \
--strip-components=3 \
--directory=delay \
'cc-toolchain-linux/bin/p_r/*.dly'