source: vendor/bash/3.1-p17/tests/misc/perftest

Last change on this file was 3228, checked in by bird, 18 years ago

bash 3.1

File size: 232 bytes
Line 
1# originally from Mike Haertel
2foo() { case $1 in a*) ;; *) ;; esac ;}
3bar() { case $1 in [abc]*) ;; *);; esac ;}
4baz() { case $1 in xyzzy) ;; *) ;; esac ;}
5for x in /usr/lib/*/*
6do
7 foo $x
8 bar $x
9 baz $x
10done
Note: See TracBrowser for help on using the repository browser.