-
-
Save rfjakob/411d5b77bb39322eee3aca769b1d9577 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!/bin/bash | |
set -eu | |
m1000() { | |
for i in $(seq 100) ; do | |
D=mtest.$BASHPID.$i/foo/bar/baz | |
mkdir -p $D | |
touch $D/foo $D/bar | |
echo AAAAAAAAAAAAAAAAAAAAA > $D/foo | |
rm $D/foo | |
mkdir $D/baz | |
done | |
} | |
rm -Rf mtest.* | |
echo . | |
m1000 & | |
m1000 & | |
wait |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment