pwd
imprime el nombre del directorio de trabajo actual (print working
1. pwd.1.man
Manpage of PWD
PWD
Section: User Commands (1)Updated: Utilidades Shell GNU
Index Return to Main Contents
NOMBRE
pwd - imprime el nombre del directorio de trabajo actual (print working directory)SINOPSIS
pwdpwd {--help,--version}
DESCRIPCION
Esta documentación no será mantenida y puede ser inexacta o incompleta. La documentación Texinfo es ahora la fuente autorizada.Esta página de manual documenta la versión GNU de pwd. pwd imprime el nombre del directorio actual completamente resuelto. Esto es, todos los componentes del nombre impreso serán los nombres de directorios actuales -- nada serán enlace simbólicos.
Observe que la mayoría de las shell Unix proporcionan un comando pwd con una funcionalidad similar, y por tanto el comando interactivo sin nada más que pwd normalmente ejecutará la versión integrada en la shell y no ésta.
OPCIONES
- --help
- Imprime un mensaje de uso en la salida estándar y termina correctamente.
- --version
-
Imprime información sobre la versión en la salida estándar y termina
correctamente.
Index
This document was created by man2html using the manual pages.
Time: 17:11:24 GMT, January 19, 2012
2. pwd.9.man
Manpage of pwd
pwd
Section: Tcl Built-In Commands (n)Updated:
Index Return to Main Contents
NAME
pwd - Return the absolute path of the current working directorySYNOPSIS
pwdDESCRIPTION
Returns the absolute path name of the current working directory.
EXAMPLE
Sometimes it is useful to change to a known directory when running some external command using exec, but it is important to keep the application usually running in the directory that it was started in (unless the user specifies otherwise) since that minimizes user confusion. The way to do this is to save the current directory while the external command is being run:-
set tarFile [file normalize somefile.tar] set savedDir [pwd] cd /tmp exec tar -xf $tarFile cd $savedDir
SEE ALSO
file(n), cd(n), glob(n), filename(n)KEYWORDS
working directory
Index
This document was created by man2html using the manual pages.
Time: 17:11:24 GMT, January 19, 2012






