Windows에서 그런 일을하는 방법을 찾았습니다.
echo "This is just a sample line appended to create a big file. " > dummy.txt
for /L %i in (1,1,21) do type dummy.txt >> dummy.txt
http://www.windows-commandline.com/how-to-create-large-dummy-file/
UNIX에서 파일을 복사하고 프로세스를 추가 한 다음 반복하는 방법이 있습니까? 같은 것 for .. cat file1.txt > file1.txt
?
for i in {1..1000000};do echo "string" >> file;done
bash에서.
type file >> file
무한 루프에서 실행될 것으로 기대 합니다 (적어도 버퍼에 맞지 않을 정도로 충분히 커지면).