You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/awk
|
|
BEGIN {
|
|
printf("const char *mke2fs_default_profile = \n");
|
|
}
|
|
|
|
{
|
|
printf(" \"%s\\n\"\n", $0);
|
|
}
|
|
|
|
END {
|
|
printf(";\n", str)
|
|
}
|