nxu/mksite.sh

33 lines
1.0 KiB
Bash
Raw Normal View History

2022-02-07 22:57:34 -05:00
#!/bin/sh
2023-09-13 01:04:45 -04:00
for STEM in audio audio-v2; do
cp $STEM.md $STEM.txt
done
2023-01-21 23:04:59 -05:00
2022-11-11 21:03:31 -05:00
for NAME in about.txt asma.rom math32.tal test-math32.tal test-math32.py \
primes32.tal regex.tal repl-regex.tal test-regex.tal grep.tal \
femto.tal femto.rom femto.txt femto \
rainbow.tal drums.tal drums2.tal bfloat16.tal \
fix16.tal test-fix16.tal test-fix16.py \
tal-mode1.png tal.nanorc petscii.chr petscii.png petscii.html \
2022-11-12 20:28:09 -05:00
tal-mode1.png tal.nanorc \
2022-11-23 00:22:51 -05:00
proposal.txt proposal2.txt uxnmeta \
2023-04-29 21:28:18 -04:00
alloc.tal test-alloc.tal term.tal term.py cp437.tal term.c \
2023-05-18 10:28:22 -04:00
wave.tal graph.tal arg.tal arg-demo.tal \
2023-07-17 09:44:25 -04:00
deck.tal cards.tal card-sprites.tal mask-sprites.tal \
2023-07-22 13:36:49 -04:00
testing.tal type-abc.tal tar.tal \
2023-08-21 23:23:29 -04:00
audio.md audio.txt synthdemo.tal \
2023-09-13 01:04:45 -04:00
audio-v2.md audio-v2.txt \
2023-10-25 13:04:50 -04:00
math-notes.txt \
2023-07-17 09:41:55 -04:00
; do
2022-02-09 20:04:12 -05:00
echo "-> $NAME"
2022-02-07 22:57:34 -05:00
cp $NAME /var/www/plastic-idolatry.com/html/erik/nxu
done
2023-01-21 23:04:59 -05:00
mkdir -p /var/www/plastic-idolatry.com/html/erik/nxu/chr
for NAME in ascii.tal ascii.chr; do
echo "-> chr/$NAME"
cp chr/$NAME /var/www/plastic-idolatry.com/html/erik/nxu/chr
done