4 lines
113 B
Bash
Executable file
4 lines
113 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# generate a 10MB test file
|
|
< /dev/urandom tr -dc "[:alnum:]" | head -c10000000 > input.txt
|