How do I create multiple files (More than 20k, I need these files to run a test for syncying) with random data in OS X? I used a previously answered question (How Can I Create Multiple Files of Random Data?) that suggested to use something like
dd if=/dev/random bs=1 count=40000 | split -b 2
But using that gives me an error saying too many files.Any other way I can create a loop that will create files with any random data?