Files
libpng/pngidat

10 lines
138 B
Bash

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