command line - Creating a large file from Windows' commandline -



command line - Creating a large file from Windows' commandline -

on mac can create random 5gb file this

dd if=dev/urandom of=~/random5gb bs=1000000 count=5000

is there equivalent command in windows xp? want able run in '.bat' file i'm creating.

try

fsutil file createnew <filename> <length>

windows command-line batch-file

Comments

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -