7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
SRC="фон-128.png"
|
|
for i in {1..42}; do
|
|
echo $i
|
|
convert -pointsize 20 -draw "text 30,85 '$i'" $SRC $i.png
|
|
done
|