source: script/filtraRisultati.sh @ 27

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
Line 
1#!/bin/bash
2
3resultDir=output/random/*dat
4filteredDir=output/random/filtered/
5
6for 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`
9done
10
11
Note: See TracBrowser for help on using the repository browser.