mirror of
https://github.com/systemd/systemd.git
synced 2026-07-15 12:00:34 +00:00
10 lines
163 B
Awk
10 lines
163 B
Awk
BEGIN{
|
|
print "static const char* const capability_names[] = { "
|
|
}
|
|
{
|
|
printf " [%s] = \"%s\",\n", $1, tolower($1)
|
|
}
|
|
END{
|
|
print "};"
|
|
}
|