diff options
Diffstat (limited to '')
-rw-r--r-- | misc/profile-to-c.awk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/profile-to-c.awk b/misc/profile-to-c.awk new file mode 100644 index 0000000..814f723 --- /dev/null +++ b/misc/profile-to-c.awk @@ -0,0 +1,13 @@ +#!/bin/awk +BEGIN { + printf("const char *mke2fs_default_profile = \n"); +} + +{ + gsub("\"","\\\"",$0); + printf(" \"%s\\n\"\n", $0); +} + +END { + printf(";\n", str) +} |