Last change
on this file was
29,
checked in by gnappo, 15 years ago
|
Taggata versione per la demo e aggiunto branch.
|
-
Property svn:executable set to
*
|
File size:
255 bytes
|
Rev | Line | |
---|
[29] | 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.