]> git.ipfire.org Git - thirdparty/bash.git/blob - tests/misc/haertel.perftest
04910c89702ad4c5adcc0306f539c60f98c1a742
[thirdparty/bash.git] / tests / misc / haertel.perftest
1 foo() { case $1 in a*) ;; *) ;; esac ;}
2 bar() { case $1 in [abc]*) ;; *);; esac ;}
3 baz() { case $1 in xyzzy) ;; *) ;; esac ;}
4 for x in /usr/lib/*/*
5 do
6 foo $x
7 bar $x
8 baz $x
9 done