Artifact 25cb36fec879cf9e6549f3f93aba94e5d18f99b170808a7b46374ee02520e9cf:


#! /usr/bin/gawk -f
# script to replace the line: "/* insert filename */" with the contents of file "filename"
($1 != "/*" || $2 != "insert" || $4 != "*/") { print }
($1 == "/*" && $2 == "insert" && $4 == "*/") { cmd = "cat " $3 ; system(cmd) }

MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]