#!/usr/bin/gawk -f BEGIN{ FS=OFS=" "; } { if ( $2 == 0 ) print 0; else printf( "%3.20f", $1/$2*100 ); }