1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 22:46:02 +02:00
tldr/pages/linux/mountpoint.md

17 lines
429 B
Markdown
Raw Normal View History

2019-05-01 07:36:40 -04:00
# mountpoint
> Test if a directory is a filesystem mountpoint.
> More information: <https://manned.org/mountpoint>.
2019-05-01 07:36:40 -04:00
- Check if a directory is a mountpoint:
`mountpoint {{path/to/directory}}`
- Check if a directory is a mountpoint without showing any output:
`mountpoint {{[-q|--quiet]}} {{path/to/directory}}`
2019-05-01 07:36:40 -04:00
- Show major/minor numbers of a mountpoint's filesystem:
`mountpoint {{[-d|--fs-devno]}} {{path/to/directory}}`