source: branches/MetisMQI/script/filtraRisultati.sh @ 33

Last change on this file since 33 was 29, checked in by gnappo, 14 years ago

Taggata versione per la demo e aggiunto branch.

  • 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.