getPassword function

Passwd getPassword(
  1. String username
)

Retrieve the user database entry for the given username.

This is an wrapper for the posix getpwnam function.

If username is not found then a PosixException is thrown.

Implementation

Passwd getPassword(String username) => getpwnam(username);