| READLINK(1) | General Commands Manual | READLINK(1) | 
readlink — print
    content of a symbolic link
| readlink | [ -f|-e]
      [-n|-z]
      path | 
Note: For canonicalization of a path, use the realpath(1) utility instead for better portability.
The readlink utility reads the symbolic
    link of each path and prints it.
If path is not a symbolic link,
    readlink errors out.
The readlink utility exits 0 on
    success, and >0 if an error occurs.
Assign //example.org/ to foobar and read it:
$ ln -s //example.org/ foobar $ readlink foobar //example.org/
readlink should be compliant with the IEEE
    Std 1003.1-2024 (“POSIX.1”) specification.
The options -f, -e
    and -z and support for multiple
    path arguments are extensions present for
    compatibility with existing software.
Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
| July 25, 2024 | Linux |