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 -

intellij idea - Update external libraries with intelij and java -

javascript - send data from a new window to previous window in php -