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