diff --git a/Userland/whoami.cpp b/Userland/whoami.cpp new file mode 100644 index 0000000000..985d91417f --- /dev/null +++ b/Userland/whoami.cpp @@ -0,0 +1,8 @@ +#include +#include + +int main(int, char**) +{ + puts(getlogin()); + return 0; +}