#! /bin/bash
# Last edited on 2011-05-27 03:12:56 by stolfilocal

# Convert a single column of Sv/h in E-format to integer cSv/h 

gawk \
  ' //{ 
      v = $1;
      printf "%5d\n", int(100*v + 0.5);
    }
  '
  
