fish-shell/doc_src/cmds/realpath.rst

23 lines
785 B
ReStructuredText
Raw Normal View History

.. program::realpath
2020-03-31 15:37:38 +00:00
realpath - convert a path to an absolute path without symlinks
==============================================================
Synopsis
--------
**realpath** [*options*] *PATH*
Description
-----------
:program:`realpath` follows all symbolic links encountered for the provided ``PATH``, printing the absolute path resolved. :program:`fish` provides a :command:`realpath`-alike builtin intended to be enrich systems where no such command is installed
by default.
2019-09-17 12:48:22 +00:00
If a :command:`realpath` command exists, it will be preferred.
``builtin realpath`` will eplicitly use this implementation.
The following options are available:
- ``-s`` or ``--no-symlinks``: Don't resolve symlinks, only make paths absolute, squash multiple slashes and remove trailing slashes.