Files
cheatsheet-tldr/tldr/linux/namei
2025-03-29 00:18:23 +00:00

31 lines
939 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# namei
> Follows a pathname (which can be a symbolic link) until a terminal point is found (a file/directory/char device etc).
> This program is useful for finding "too many levels of symbolic links" problems.
> More information: <https://manned.org/namei>.
- Resolve the pathnames specified as the argument parameters:
`namei {{path/to/a}} {{path/to/b}} {{path/to/c}}`
- Display the results in a long-listing format:
`namei {{[-l|--long]}} {{path/to/a}} {{path/to/b}} {{path/to/c}}`
- Show the mode bits of each file type in the style of `ls`:
`namei {{[-m|--modes]}} {{path/to/a}} {{path/to/b}} {{path/to/c}}`
- Show owner and group name of each file:
`namei {{[-o|--owners]}} {{path/to/a}} {{path/to/b}} {{path/to/c}}`
- Don't follow symlinks while resolving:
`namei {{[-n|--nosymlinks]}} {{path/to/a}} {{path/to/b}} {{path/to/c}}`