Add proper per-file copyright notices/licenses and top-level license.
[bluesky.git] / microbench / setup / build-fs
1 #!/bin/bash
2
3 # Create a directory with a number of small files.  Space out the creation of
4 # each file by several seconds so that for BlueSky, without running the
5 # cleaner, the inodes should end up in separate log files in the cloud.
6 mkdir small
7 for i in {0..15}; do
8     sleep 5
9     dd if=/dev/urandom bs=4k count=1 of=small/file-$i
10 done