mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
16 lines
353 B
Markdown
16 lines
353 B
Markdown
|
# mountpoint
|
||
|
|
||
|
> Test if a directory is a filesystem mountpoint.
|
||
|
|
||
|
- Check if a directory is a mountpoint:
|
||
|
|
||
|
`mountpoint {{path/to/directory}}`
|
||
|
|
||
|
- Check if a directory is a mountpoint without showing any output:
|
||
|
|
||
|
`mountpoint -q {{path/to/directory}}`
|
||
|
|
||
|
- Show major/minor numbers of a mountpoint's filesystem:
|
||
|
|
||
|
`mountpoint --fs-devno {{path/to/directory}}`
|