#!/usr/bin/gawk -f # ___ _ _ ____ ___ ___ ____ ___ ____ # | \ | | | | | |__| |__] |___ # |__/ |__| |___ | | | | | |___ # # The scripts were written to be usefull in # a research enviornment, but anyone is welcome # to use them. Happy awking. -Tim Sherwood BEGIN { FS = ":"; } { for( i=1; i<=NF; i++ ) { printf "%s", $i; if ( i!=NF ) { printf "\t" }; } printf "\n"; }