antispam

commit 0a4b02670172fedd3d7a93a169b8b62c5e624980

Author: Pedro Lucas Porcellis <porcellis@eletrotupi.com>

yaml: add a awk script to convert raw data to yaml

 to_yaml.awk | 7 +++++++


diff --git a/to_yaml.awk b/to_yaml.awk
new file mode 100644
index 0000000000000000000000000000000000000000..5c5dd940e7fb8fa55c000ce3814eb827bc444431
--- /dev/null
+++ b/to_yaml.awk
@@ -0,0 +1,7 @@
+BEGIN {
+	print "---"
+	print root ":"
+}
+{
+	print "\t - \"" $0 "\""
+}