sbbs/text/frames_check.sh

9 lines
246 B
Bash
Executable File

#!/bin/bash
find tex vtx -maxdepth 1 -type f | awk -F. '{print $1}'|awk -F/ '{print $2}'|sort|uniq| while read i; do
[ "$i" == "tex/:" -o "$i" == "vtx/:" ] && continue
echo "======= ${i} ======="
jsexec -n ansitex/tools/frames_check $i
done