e2fsprogs/misc/profile-to-c.awk

14 lines
164 B
Awk
Raw Permalink Normal View History

2022-05-13 20:16:34 +08:00
#!/bin/awk
BEGIN {
printf("const char *mke2fs_default_profile = \n");
}
{
2024-03-26 10:09:11 +08:00
gsub("\"","\\\"",$0);
2022-05-13 20:16:34 +08:00
printf(" \"%s\\n\"\n", $0);
}
END {
printf(";\n", str)
}