Return the SystemUser entry for the current effective user.
SystemUser for the calling process's effective UID.
Exception if the entry cannot be found or an error occurs.
import unit_threaded.assertions; import core.sys.posix.unistd: geteuid; auto user = getCurrentUser(); user.uid.shouldEqual(geteuid());
See Implementation
Return the SystemUser entry for the current effective user.