Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
refs/heads/rivoreo-fork
/
.
/
src
/
basic
/
cap-to-name.awk
blob: 402a782024eb238d4c35316eb06fa26f782e52cf [
file
] [
log
] [
blame
] [
raw
]
BEGIN
{
print
"static const char* const capability_names[] = { "
}
{
printf
" [%s] = \"%s\",\n"
,
$1
,
tolower
(
$1
)
}
END
{
print
"};"
}