2019-03-31 11:05:09 +02:00
.. _cmd-realpath:
2020-03-31 17:37:38 +02:00
realpath - convert a path to an absolute path without symlinks
2019-01-02 20:10:47 -08:00
==============================================================
2018-12-16 17:39:33 -08:00
2018-12-17 17:58:24 -08:00
Synopsis
--------
2018-12-16 13:08:41 -08:00
2019-09-17 17:59:04 +08:00
::
2018-12-17 17:58:24 -08:00
2019-09-17 17:59:04 +08:00
realpath PATH
2018-12-16 13:08:41 -08:00
2018-12-18 18:44:30 -08:00
Description
2019-01-02 20:10:47 -08:00
-----------
2018-12-16 13:08:41 -08:00
2019-09-17 20:48:22 +08:00
`` realpath `` resolves a path to its absolute path.
2018-12-16 13:08:41 -08:00
2020-09-12 19:26:04 +02:00
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
2020-09-12 19:26:04 +02: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:
2020-09-12 19:28:01 +02:00
- `` -s `` or `` --no-symlinks `` : Don't resolve symlinks, only make paths absolute, squash multiple slashes and remove trailing slashes.