Last active
August 10, 2025 08:58
-
-
Save puneet-goel/852d52ca40dd23c4d891f21fbdc0386e to your computer and use it in GitHub Desktop.
Create random files f required size
This file contains hidden or 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
# windows | |
fsutil file createnew [filename].[extension] [# of bytes] | |
# linux | |
fallocate -l 10G [filename].[extension] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment