copy chr files

This commit is contained in:
~d6 2023-01-21 23:04:59 -05:00
parent 2f9ae98c96
commit 4900ec17f0
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#!/bin/sh
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 \
@ -13,3 +14,10 @@ do
echo "-> $NAME"
cp $NAME /var/www/plastic-idolatry.com/html/erik/nxu
done
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