Last change
on this file since 27 was
25,
checked in by gnappo, 14 years ago
|
Piccola modifica al generatore pseudo casuale da cui è possibile farsi restituire il seme. Aggiunta di alcuni script per analizzare l'output e creazione struttura directory provvisioria per l'output.
|
-
Property svn:executable set to
*
|
File size:
255 bytes
|
Rev | Line | |
---|
[25] | 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.