blob: 701d43635879cfe312d4f206b04d1f370b712a21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)
|