28 lines
910 B
Bash
Executable File
28 lines
910 B
Bash
Executable File
#!/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 \
|
|
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 \
|
|
tal-mode1.png tal.nanorc \
|
|
proposal.txt proposal2.txt uxnmeta \
|
|
alloc.tal test-alloc.tal term.tal term.py cp437.tal term.c \
|
|
wave.tal graph.tal arg.tal arg-demo.tal \
|
|
deck.tal cards.tal card-sprites.tal mask-sprites.tal \
|
|
testing.tal type-abc.tal tar.tal \
|
|
audio.md \
|
|
; 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
|