/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$ dd if=/dev/zero of=filename bs=1k count=5 # 5KB of zero content $ dd if=/dev/urandom of=filename bs=1M count=7 # 7MB of random content $ touch filename # create 0B file (if file exists, updates mtime)