14 lines
244 B
Bash
Executable File
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"
|