7 lines
112 B
Bash
Executable File
7 lines
112 B
Bash
Executable File
#!/bin/bash
|
|
#convert
|
|
for image in *.png; do
|
|
convert "$image" -crop 240x240+0+29 "$image"
|
|
done
|
|
exit 0
|