#!/usr/bin/awk -f # # Script contains all needed conversions of recoded text # # Remove everything before first "" # (as there should be only one occurance, thats no problem) /\?\>/ { print "?>"; exit } { # Convert CRLF -> LF (== "remove CR" ) ;-) gsub(" ",""); gsub("'","'"); print $0 }