nxu/mksite.sh

24 lines
739 B
Bash
Raw Normal View History

2022-02-07 22:57:34 -05:00
#!/bin/sh
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-01-21 15:58:38 -05:00
alloc.tal test-alloc.tal term.tal term.py;
2022-11-11 21:03:31 -05: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