2019-03-31 09:05:09 +00:00
|
|
|
.. _cmd-pwd:
|
|
|
|
|
2018-12-17 01:39:33 +00:00
|
|
|
pwd - output the current working directory
|
|
|
|
==========================================
|
|
|
|
|
2018-12-18 01:58:24 +00:00
|
|
|
Synopsis
|
|
|
|
--------
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2021-12-22 01:24:47 +00:00
|
|
|
| ``pwd`` [**-P** | **--physical**]
|
|
|
|
| ``pwd`` [**-L** | **--logical**]
|
2018-12-18 01:58:24 +00:00
|
|
|
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2018-12-19 02:44:30 +00:00
|
|
|
Description
|
2019-01-03 04:10:47 +00:00
|
|
|
-----------
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2021-07-16 16:21:41 +00:00
|
|
|
.. only:: builder_man
|
|
|
|
|
|
|
|
NOTE: This page documents the fish builtin ``pwd``.
|
|
|
|
To see the documentation on the ``pwd`` command you might have,
|
|
|
|
use ``command man pwd``.
|
|
|
|
|
2018-12-19 20:02:45 +00:00
|
|
|
``pwd`` outputs (prints) the current working directory.
|
2018-12-16 21:08:41 +00:00
|
|
|
|
|
|
|
The following options are available:
|
|
|
|
|
2020-03-21 15:21:15 +00:00
|
|
|
- ``-L`` or ``--logical`` Output the logical working directory, without resolving symlinks (default behavior).
|
2018-12-16 21:08:41 +00:00
|
|
|
|
2020-03-21 15:21:15 +00:00
|
|
|
- ``-P`` or ``--physical`` Output the physical working directory, with symlinks resolved.
|
2020-04-04 11:01:53 +00:00
|
|
|
|
|
|
|
See Also
|
|
|
|
--------
|
|
|
|
|
|
|
|
Navigate directories using the :ref:`directory history <directory-history>` or the :ref:`directory stack <directory-stack>`
|