13 lines
147 B
Bash
Executable File
13 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dirs=`/bin/ls -d bench_*`
|
|
|
|
for d in $dirs
|
|
do \
|
|
pushd $d
|
|
for f in [lr][oe][gf].*xOpenMP_*xMPI ; do \
|
|
rm -f $f
|
|
done
|
|
popd
|
|
done
|