1.1 misho 1: #!/usr/bin/awk 2: # 3: # Convert input text into a C string 4: # 5: { 6: gsub(/\"/,"\\\""); 7: print "\"" $0 "\\n\""; 8: }