mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
10 lines
138 B
Bash
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
|