1998-08-10 16:42:37 -03:00
|
|
|
\section{\module{pwd} ---
|
|
|
|
The password database.}
|
1998-07-23 14:59:49 -03:00
|
|
|
\declaremodule{builtin}{pwd}
|
|
|
|
|
|
|
|
|
|
|
|
\modulesynopsis{The password database (\function{getpwnam()} and friends).}
|
1994-01-01 21:22:07 -04:00
|
|
|
|
|
|
|
This module provides access to the \UNIX{} password database.
|
|
|
|
It is available on all \UNIX{} versions.
|
|
|
|
|
|
|
|
Password database entries are reported as 7-tuples containing the
|
1998-08-14 14:05:17 -03:00
|
|
|
following items from the password database (see \code{<pwd.h>}), in order:
|
1994-01-01 21:22:07 -04:00
|
|
|
\code{pw_name},
|
|
|
|
\code{pw_passwd},
|
|
|
|
\code{pw_uid},
|
|
|
|
\code{pw_gid},
|
|
|
|
\code{pw_gecos},
|
|
|
|
\code{pw_dir},
|
|
|
|
\code{pw_shell}.
|
|
|
|
The uid and gid items are integers, all others are strings.
|
1997-12-30 16:38:16 -04:00
|
|
|
A \code{KeyError} exception is raised if the entry asked for cannot be found.
|
1994-01-01 21:22:07 -04:00
|
|
|
|
|
|
|
It defines the following items:
|
|
|
|
|
|
|
|
\begin{funcdesc}{getpwuid}{uid}
|
|
|
|
Return the password database entry for the given numeric user ID.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{getpwnam}{name}
|
|
|
|
Return the password database entry for the given user name.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{getpwall}{}
|
|
|
|
Return a list of all available password database entries, in arbitrary order.
|
|
|
|
\end{funcdesc}
|