summaryrefslogtreecommitdiff
path: root/Userland/useradd.cpp
AgeCommit message (Collapse)Author
2020-02-06LibCore: Remove leading C from filenamesAndreas Kling
2020-02-02LibCore: Put all classes in the Core namespace and remove the leading CAndreas Kling
I've been wanting to do this for a long time. It's time we start being consistent about how this stuff works. The new convention is: - "LibFoo" is a userspace library that provides the "Foo" namespace. That's it :^) This was pretty tedious to convert and I didn't even start on LibGUI yet. But it's coming up next.
2020-02-02Userland: useradd utilityJesse Buhagiar
This commit implements the `useradd` utility that is found on most, if not all *NIX systems. It allows the root user to add new users to the password file found in `/etc/passwd`, thereby making it easier to manipulate the file.