1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:57:35 +00:00

Base: Document readlink(1) and readlink(2) :^)

This commit is contained in:
Sergey Bugaev 2020-06-16 22:42:22 +03:00 committed by Andreas Kling
parent b6a4c450d1
commit fd985b1f48
2 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,27 @@
## Name
readlink - get symlink target
## Synopsis
```**sh
$ readlink [--no-newline] <path...>
```
## Description
Print targets of the specified symbolic links.
## Options
* `-n`, `--no-newline`: Do not output a newline after each target
## Examples
```sh
$ readlink /proc/self/cwd
```
## See also
* [`readlink`(2)](../man2/readlink.md)