source:
examples/scaling_tests/haystack/run_clean
@
880e924
Last change on this file since 880e924 was 373bf68, checked in by , 12 years ago | |
---|---|
|
|
File size: 182 bytes |
Rev | Line | |
---|---|---|
[373bf68] | 1 | #!/bin/sh |
2 | ||
3 | pwd=`pwd` | |
4 | ||
5 | for i in `ls -1` ; do | |
6 | if [ -d $i ]; then | |
7 | printf " ...cleaning on %s\n" "$i" >& 2; | |
8 | cd $i | |
9 | ./run_clean | |
10 | cd $pwd | |
11 | fi | |
12 | done | |
13 | ||
14 |
Note: See TracBrowser
for help on using the repository browser.