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

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

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