source:
branches/MetisMQI/script/filtraRisultati.sh
Last change on this file was 29, checked in by , 14 years ago | |
---|---|
|
|
File size: 255 bytes |
Line | |
---|---|
1 | #!/bin/bash |
2 | |
3 | resultDir=output/random/*dat |
4 | filteredDir=output/random/filtered/ |
5 | |
6 | for file in $resultDir; do |
7 | echo "Processing file $file" |
8 | cat $file | grep conductance | sed 's/Cluster conductance: //g' | grep -v NaN > $filteredDir`basename $file` |
9 | done |
10 | |
11 |
Note: See TracBrowser
for help on using the repository browser.