source:
examples/cleanall
@
880e924
Last change on this file since 880e924 was 2c03e57, checked in by , 12 years ago | |
---|---|
|
|
File size: 126 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | |
3 | pwd=`pwd` |
4 | |
5 | for i in `ls -1`; do |
6 | if [ -d $i ]; then |
7 | cd $i |
8 | .runall clean |
9 | cd $pwd |
10 | fi |
11 | done |
Note: See TracBrowser
for help on using the repository browser.