Files
libpng/pngzdat

10 lines
126 B
Bash
Executable File

#!/bin/sh
for x in $*
do
root=`echo $1 | sed -e s/.png$//`
pngidat.exe < $1 > $root.zdat
ls -l $root.zdat
shift
done