table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
getusershell(3) | Library Functions Manual | getusershell(3) |
NOMBRE¶
getusershell, setusershell, endusershell - get permitted user shells
BIBLIOTECA¶
Biblioteca Estándar C (libc, -lc)
SINOPSIS¶
#include <unistd.h>
char *getusershell(void); void setusershell(void); void endusershell(void);
getusershell(), setusershell(), endusershell():
Since glibc 2.21:
_DEFAULT_SOURCE
In glibc 2.19 and 2.20:
_DEFAULT_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500)
Up to and including glibc 2.19:
_BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500)
DESCRIPCIÓN¶
La función getusershell() devuelve la siguiente línea del fichero /etc/shells, abriéndolo si es necesario. La línea debería contener la ruta de una shell de usuario válida. Si /etc/shells no existe o no se puede leer, getusershell() se comporta como si en el fichero se encontraran las shells /bin/sh y /bin/csh.
La función setusershell() reinicializa /etc/shells.
La función endusershell() cierra /etc/shells.
VALOR DEVUELTO¶
La función getusershell() devuelve NULL si se llega al fin de fichero.
ARCHIVOS¶
/etc/shells
ATRIBUTOS¶
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
getusershell(), setusershell(), endusershell() | Seguridad del hilo | MT-Unsafe |
ESTÁNDARES¶
None.
HISTORIAL¶
4.3BSD.
VÉASE TAMBIÉN¶
TRADUCCIÓN¶
La traducción al español de esta página del manual fue creada por Gerardo Aburruzaga García <gerardo.aburruzaga@uca.es>
Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.
2 Mayo 2024 | Páginas de Manual de Linux 6.8 |