Created
January 26, 2023 10:09
-
-
Save ScribbleGhost/89fb6b8e98f737f8c22acf4678d2acc7 to your computer and use it in GitHub Desktop.
Generate 34 GB of random data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for ($i=1; $i -le 34; $i++){$out = new-object byte[] 1073742000; (new-object Random).NextBytes($out);[IO.File]::WriteAllBytes("random_data_file$i.txt", $out)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment