Sometimes you just want to make a big file - Mon, Jan 25, 2016
Here’s how you create a 1Gb big dummy txt file:
$ openssl rand -out sample.txt -base64 $(( 2**30 * 3/4 ))
Good for those moments where you just have to have something random enough.