4515a45b8c
The easiest fix is to simply not use any backslashes in the spaceanal.tcl script. FossilOrigin-Name: df550066657cb41bad34ac8e722b8148ab7eabfb
9 lines
106 B
Awk
9 lines
106 B
Awk
#!/usr/bin/awk
|
|
#
|
|
# Convert input text into a C string
|
|
#
|
|
{
|
|
gsub(/\"/,"\\\"");
|
|
print "\"" $0 "\\n\"";
|
|
}
|