8 lines
148 B
Bash
Executable File
8 lines
148 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir test
|
|
|
|
magick -size 3840x2160 xc:black test/000.png
|
|
|
|
printf '%s\n' {001..127} | xargs -P0 -I'{}' cp test/000.png test/'{}'.png
|