mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-28 07:31:14 -03:00
No need to define "cmd-foo" anchors; use :doc:`foo <cmds/foo>`
instead. If we want "cmd-foo" but it should be tested.
See also 38b24c2325 (docs: Use :doc: role when linking to commands,
2022-09-23).
31 lines
1.0 KiB
ReStructuredText
31 lines
1.0 KiB
ReStructuredText
realpath - convert a path to an absolute path without symlinks
|
|
==============================================================
|
|
|
|
Synopsis
|
|
--------
|
|
|
|
.. synopsis::
|
|
|
|
realpath [OPTIONS] PATH
|
|
|
|
Description
|
|
-----------
|
|
|
|
.. only:: builder_man
|
|
|
|
NOTE: This page documents the fish builtin ``realpath``.
|
|
To see the documentation on any non-fish versions, use ``command man realpath``.
|
|
|
|
:program:`realpath` follows all symbolic links encountered for the provided :envvar:`PATH`, printing the absolute path resolved. :doc:`fish <fish>` provides a :command:`realpath`-alike builtin intended to enrich systems where no such command is installed by default.
|
|
|
|
If a :command:`realpath` command exists, that will be preferred.
|
|
``builtin realpath`` will explicitly use the fish implementation of :command:`realpath`.
|
|
|
|
The following options are available:
|
|
|
|
**-s** or **--no-symlinks**
|
|
Don't resolve symlinks, only make paths absolute, squash multiple slashes and remove trailing slashes.
|
|
|
|
**-h** or **--help**
|
|
Displays help about using this command.
|