Luna/apps/chown.cpp
apio eb58b4acc8
All checks were successful
continuous-integration/drone/push Build is passing
libos: Add support for --help to ArgumentParser
2023-04-19 19:16:45 +02:00

25 lines
569 B
C++

#include <os/ArgumentParser.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char** argv)
{
StringView user;
StringView path;
os::ArgumentParser parser;
parser.add_description("Change the owner and group of a file."_sv);
parser.add_positional_argument(user, "user"_sv, true);
parser.add_positional_argument(path, "path"_sv, true);
parser.parse(argc, argv);
u32 id = (u32)strtoul(user.chars(), NULL, 0);
if (chown(path.chars(), id, id) < 0)
{
perror("chown");
return 1;
}
}