fish-shell/doc_src/cmds/realpath.rst

31 lines
942 B
ReStructuredText
Raw Normal View History

.. _cmd-realpath:
2020-03-31 23:37:38 +08:00
realpath - convert a path to an absolute path without symlinks
==============================================================
Synopsis
--------
::
realpath PATH
Description
-----------
.. only:: builder_man
NOTE: This page documents the fish builtin ``realpath``.
To see the documentation on the ``realpath`` command you might have,
use ``command man realpath``.
2019-09-17 20:48:22 +08:00
``realpath`` resolves a path to its absolute path.
fish provides a ``realpath`` builtin as a fallback for systems where there is no ``realpath`` command, your OS might provide a version with more features.
2019-09-17 20:48:22 +08:00
If a ``realpath`` command exists, it will be preferred, so if you want to use the builtin you should use ``builtin realpath`` explicitly.
The following options are available:
- ``-s`` or ``--no-symlinks``: Don't resolve symlinks, only make paths absolute, squash multiple slashes and remove trailing slashes.