diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-04-28 10:31:19 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-04-28 10:31:19 +0200 |
commit | 490dc079c0374ee2a290a06c42e6ad7e9ca1fa22 (patch) | |
tree | 184ea7383c065c00822d8a0e48c4c03b11a27346 /run.sh | |
parent | 210cf79cdddda090c5ed45e29b32efee73c50494 (diff) |
produce dfatool-compatible output, add run script
Diffstat (limited to 'run.sh')
-rwxr-xr-x | run.sh | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +ARRSIZE=512 + +./mbw -t0 ${ARRSIZE} +./mbw -t1 ${ARRSIZE} +for blocksize in 8 16 32 64 128 256 512 1024 \ + $((1024*2)) $((1024*4)) $((1024*8)) $((1024*16)) $((1024*32)) $((1024*64)) \ + $((1024*128)) $((1024*256)) $((1024*512)) $((1024*1024)) \ + $((1024*1024*2)) $((1024*1024*4)) $((1024*1024*8)) $((1024*1024*16)); do + ./mbw -b $blocksize -t2 ${ARRSIZE} +done |