lists/previews.sh
Marco Cawthorne c6aacaad5d
All checks were successful
Construct / build (push) Successful in 2m1s
initial dispatch of data
2025-02-10 20:41:53 -08:00

14 lines
252 B
Bash
Executable file

#!/bin/sh
find ./ -type f -print | grep \\.decl | sort > tmplist1
cat tmplist1
TOTAL_PKGS=$(wc -l tmplist1)
COUNTER=0
cat tmplist1 | while read DECL
do
COUNTER=$((COUNTER+1))
./convert-previews.sh "$DECL"
echo "($COUNTER/$TOTAL_PKGS) $DECL"
done