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