pwd
pwd (англ. print working directory — текущий рабочий каталог[1][2]; или print working directory[3] — вывести рабочий каталог) — консольная утилита в UNIX-подобных системах, которая выводит полный путь от корневого каталога к текущему рабочему каталогу: в контексте которого (по умолчанию) будут исполняться вводимые команды.
Пример работы
bash-3.00$ cd /export/home/sergey/ bash-3.00$ pwd /export/home/sergey bash-3.00$ $ CURR_DIR=`pwd` или $ CURR_DIR=$(pwd) ... $ cd $CURR_DIR
См. также
Примечания
- Dixit, J. Computer Concepts and C Programming. — Laxmi Publications Pvt Limited, 2005. — P. 133. — ISBN 9788170081135.
- Blum, E.K. and Aho, A.V. Computer Science: The Hardware, Software and Heart of It. — Springer, 2011. — P. 101. — ISBN 9781461411680.
- Jerry Peek, Grace Todino & John Strang; Learning the UNIX Operating System. O'Reilly, 1998, 106 pages. ISBN 1-56592-390-1
Ссылки
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.