1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 02:38:13 +00:00

Userland: Add /bin/whoami

This commit is contained in:
Andreas Kling 2019-05-16 20:18:17 +02:00
parent f196e2fcda
commit c597c2332b

8
Userland/whoami.cpp Normal file
View file

@ -0,0 +1,8 @@
#include <stdio.h>
#include <unistd.h>
int main(int, char**)
{
puts(getlogin());
return 0;
}