mirror of
https://github.com/ceph/ceph
synced 2024-12-15 16:07:00 +00:00
3aae5ca6fd
/bin/bash is a Linuxism. Other operating systems install bash to different paths. Use /usr/bin/env in shebangs to find bash. Signed-off-by: Alan Somers <asomers@gmail.com>
8 lines
179 B
Bash
Executable File
8 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
iozone -c -e -s 1024M -r 16K -t 1 -F f1 -i 0 -i 1
|
|
iozone -c -e -s 1024M -r 1M -t 1 -F f2 -i 0 -i 1
|
|
iozone -c -e -s 10240M -r 1M -t 1 -F f3 -i 0 -i 1
|