summaryrefslogtreecommitdiffstats
path: root/misc/profile-to-c.awk
blob: 814f7236a8ae0664bef57e85fa3a6b53d019cc24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/awk
BEGIN {
  printf("const char *mke2fs_default_profile = \n");
}

{
  gsub("\"","\\\"",$0);
  printf("  \"%s\\n\"\n", $0);
}

END {
  printf(";\n", str)
}