primero de disparar el comando:
dd if=/dev/urandom of=file.txt bs=2048 count=10
creará un archivo en la ruta de tamaño bs * contar bytes aleatorios, en nuestro caso 2048 * 10 = 20Kb. eso se puede cambiar según el requisito.
cat - > file.txt
Este comando redirige STDIN a un archivo, por lo que deberá ingresar dos líneas y luego presionar Ctrl + D. Luego deberá ejecutar el siguiente comando:
for i in {1..n}; do cat file.txt file.txt > file2.txt && mv file2.txt file.txt; done
Donde n es un número entero. Esto creará un archivo con 2 ^ (n + 1) líneas, duplicando las dos líneas originales. Entonces, para crear un archivo con 16 líneas, haría:
for i in {1..3}; do cat file.txt file.txt > file2.txt && mv file2.txt file.txt; done
Aquí hay algunos números más para comenzar:
n=15 will give you 65536 lines (if the original two lines were 'hello' and 'world' the file will be 384Kb)
n=20 will give you 2097152 lines (12Mb file with 'hello' and 'world' as the two starting lines)
n=25 will give you 67108864 lines (384Mb file with 'hello' and 'world' as the two starting lines)