9 lines
117 B
Bash
Executable File
9 lines
117 B
Bash
Executable File
#!/usr/bin/env bash
|
|
ARGS=(
|
|
-coalesce
|
|
-resize 20%
|
|
img/xmsx.gif
|
|
img/xmsx_%d.png
|
|
)
|
|
convert "${ARGS[@]}"
|