Files
pmomusic/tools/build_package_resume

14 lines
325 B
Plaintext
Raw Normal View History

#!/bin/bash
TARGET=$1
DEST=$(basename $TARGET)
VERSION=$2
2025-12-08 22:32:42 +01:00
find $TARGET -type f -not -name '.*' -not -name '*.webp' \
| while read filename ; do
echo "=============== $filename ============"
cat $filename
echo "========= End of $filename ==========="
echo ""
done > $(printf "%s_%03d.txt" $DEST $VERSION)