7 lines
175 B
Bash
Executable file
7 lines
175 B
Bash
Executable file
#!/bin/sh
|
|
for PNG in $(find . -type f -name "*.png")
|
|
do
|
|
convert "$PNG" -alpha opaque "${PNG%.png}.xpm"
|
|
convert "$PNG" -alpha extract "${PNG%.png}.alpha.xpm"
|
|
rm "$PNG"
|
|
done
|