私は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
バッシュ。
type file >> file
無限ループで実行することを期待しています(少なくとも、バッファーに収まらないほど十分に大きい場合)。