mirror of
https://github.com/rocky-linux/rocky-logos.git
synced 2024-11-10 23:31:25 +00:00
13 lines
189 B
Bash
Executable File
13 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
usage() {
|
|
echo "Usage: $0 <source> <output>"
|
|
exit 1
|
|
}
|
|
|
|
if [ -z "$1" -o -z "$2" ]; then
|
|
usage
|
|
fi
|
|
|
|
pngtopnm $1 | ppmtolss16 \#cdcfd5=7 \#ffffff=1 \#000000=0 \#c90000=15 > $2
|