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