mirror of
https://github.com/wassname/cardsforscience.git
synced 2026-07-02 17:21:09 +08:00
5 lines
94 B
Bash
Executable File
5 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
convert $1 -resize 128x128 $2@2x.png
|
|
convert $2@2x.png -resize 64x64 $2.png
|
|
rm $1
|