view mkalloyinfo.sh @ 53:b09aff132deb

Get rid of short tags.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 Jun 2023 02:29:16 +0300
parents 1a7f8f8cd5ff
children
line wrap: on
line source

#!/bin/sh
ADDR="ccr@tnsp.org:/var/www/tnsp.org/mat/"
DESTDIR="./"
ALLOYPHP="${DESTDIR}/alloys.inc.php"
ALLOYTXT="${DESTDIR}/alloys.txt"

echo "Generating alloy data ..."
cat logs/*/*.log | \
grep -B1 "^You mix .* and create a quantity of " >> tmp

perl -w parsealloys.pl -php < tmp > "$ALLOYPHP"
perl -w parsealloys.pl -text < tmp > "$ALLOYTXT"

rm -f tmp

echo "Uploading ..."
scp -C "$ALLOYTXT" "$ALLOYPHP" "$ADDR"