#!/bin/sh #dd if=/dev/zero of=test.img bs=8k count=2000 mke2fs -j -F -b 1024 -N 24000 test.img mount -t ext3 -o loop test.img /mnt pushd /mnt mkdir test cd test time seq -f "gabby-qf%f" 1 10000 | xargs touch popd umount /mnt e2fsck -fD test.img mount -t ext3 -o loop test.img /mnt pushd /mnt/test time seq -f "%f" 1 62 | xargs touch popd umount /mnt e2fsck -f test.img