1
0
Files
scripts/utils/testdata.sh
T
2024-11-30 23:24:53 +01:00

14 lines
244 B
Bash
Executable File

#!/bin/bash
create_file() {
dd if=/dev/urandom iflag=fullblock of="testdata/$1" bs=1M count=1 status=none
}
rm -rf testdata
mkdir testdata
create_file "a.mp4"
create_file "a.gif"
create_file "b.gif"
create_file "b.jpeg"
create_file "c.mp4"