mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-19 19:55:28 +02:00
namei: add page (#2427)
This commit is contained in:
parent
82efd2c573
commit
ee09ff9c5a
1 changed files with 24 additions and 0 deletions
24
pages/linux/namei.md
Normal file
24
pages/linux/namei.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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.
|
||||
|
||||
- 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 --long {{path/to/a}} {{path/to/b}} {{path/to/c}}`
|
||||
|
||||
- Show the mode bits of each file type in the style of `ls`:
|
||||
|
||||
`namei --modes {{path/to/a}} {{path/to/b}} {{path/to/c}}`
|
||||
|
||||
- Show owner and group name of each file:
|
||||
|
||||
`namei --owners {{path/to/a}} {{path/to/b}} {{path/to/c}}`
|
||||
|
||||
- Don't follow symlinks while resolving:
|
||||
|
||||
`namei --nosymlinks {{path/to/a}} {{path/to/b}} {{path/to/c}}`
|
Loading…
Add table
Reference in a new issue