diff options
Diffstat (limited to '')
-rw-r--r-- | sys-utils/mountpoint.1 | 111 | ||||
-rw-r--r-- | sys-utils/mountpoint.1.adoc | 75 |
2 files changed, 186 insertions, 0 deletions
diff --git a/sys-utils/mountpoint.1 b/sys-utils/mountpoint.1 new file mode 100644 index 0000000..c32243d --- /dev/null +++ b/sys-utils/mountpoint.1 @@ -0,0 +1,111 @@ +'\" t +.\" Title: mountpoint +.\" Author: [see the "AUTHOR(S)" section] +.\" Generator: Asciidoctor 2.0.15 +.\" Date: 2022-05-11 +.\" Manual: User Commands +.\" Source: util-linux 2.38.1 +.\" Language: English +.\" +.TH "MOUNTPOINT" "1" "2022-05-11" "util\-linux 2.38.1" "User Commands" +.ie \n(.g .ds Aq \(aq +.el .ds Aq ' +.ss \n[.ss] 0 +.nh +.ad l +.de URL +\fI\\$2\fP <\\$1>\\$3 +.. +.als MTO URL +.if \n[.g] \{\ +. mso www.tmac +. am URL +. ad l +. . +. am MTO +. ad l +. . +. LINKSTYLE blue R < > +.\} +.SH "NAME" +mountpoint \- see if a directory or file is a mountpoint +.SH "SYNOPSIS" +.sp +\fBmountpoint\fP [\fB\-d\fP|\fB\-q\fP] \fIdirectory\fP|\fIfile\fP +.sp +\fBmountpoint\fP \fB\-x\fP \fIdevice\fP +.SH "DESCRIPTION" +.sp +\fBmountpoint\fP checks whether the given \fIdirectory\fP or \fIfile\fP is mentioned in the \fI/proc/self/mountinfo\fP file. +.SH "OPTIONS" +.sp +\fB\-d\fP, \fB\-\-fs\-devno\fP +.RS 4 +Show the major/minor numbers of the device that is mounted on the given directory. +.RE +.sp +\fB\-q\fP, \fB\-\-quiet\fP +.RS 4 +Be quiet \- don\(cqt print anything. +.RE +.sp +\fB\-\-nofollow\fP +.RS 4 +Do not follow symbolic link if it the last element of the \fIdirectory\fP path. +.RE +.sp +\fB\-x\fP, \fB\-\-devno\fP +.RS 4 +Show the major/minor numbers of the given blockdevice on standard output. +.RE +.sp +\fB\-h\fP, \fB\-\-help\fP +.RS 4 +Display help text and exit. +.RE +.sp +\fB\-V\fP, \fB\-\-version\fP +.RS 4 +Print version and exit. +.RE +.SH "EXIT STATUS" +.sp +\fBmountpoint\fP has the following exit status values: +.sp +\fB0\fP +.RS 4 +success; the directory is a mountpoint, or device is block device on \fB\-\-devno\fP +.RE +.sp +\fB1\fP +.RS 4 +failure; incorrect invocation, permissions or system error +.RE +.sp +\fB32\fP +.RS 4 +failure; the directory is not a mountpoint, or device is not a block device on \fB\-\-devno\fP +.RE +.SH "ENVIRONMENT" +.sp +\fBLIBMOUNT_DEBUG\fP=all +.RS 4 +enables libmount debug output. +.RE +.SH "NOTES" +.sp +The util\-linux \fBmountpoint\fP implementation was written from scratch for libmount. The original version for sysvinit suite was written by Miquel van Smoorenburg. +.SH "AUTHORS" +.sp +.MTO "kzak\(atredhat.com" "Karel Zak" "" +.SH "SEE ALSO" +.sp +\fBmount\fP(8) +.SH "REPORTING BUGS" +.sp +For bug reports, use the issue tracker at \c +.URL "https://github.com/util\-linux/util\-linux/issues" "" "." +.SH "AVAILABILITY" +.sp +The \fBmountpoint\fP command is part of the util\-linux package which can be downloaded from \c +.URL "https://www.kernel.org/pub/linux/utils/util\-linux/" "Linux Kernel Archive" "."
\ No newline at end of file diff --git a/sys-utils/mountpoint.1.adoc b/sys-utils/mountpoint.1.adoc new file mode 100644 index 0000000..bc8a2e9 --- /dev/null +++ b/sys-utils/mountpoint.1.adoc @@ -0,0 +1,75 @@ +//po4a: entry man manual += mountpoint(1) +:doctype: manpage +:man manual: User Commands +:man source: util-linux {release-version} +:page-layout: base +:command: mountpoint + +== NAME + +mountpoint - see if a directory or file is a mountpoint + +== SYNOPSIS + +*mountpoint* [*-d*|*-q*] _directory_|_file_ + +*mountpoint* *-x* _device_ + +== DESCRIPTION + +*mountpoint* checks whether the given _directory_ or _file_ is mentioned in the _/proc/self/mountinfo_ file. + +== OPTIONS + +*-d*, *--fs-devno*:: +Show the major/minor numbers of the device that is mounted on the given directory. + +*-q*, *--quiet*:: +Be quiet - don't print anything. + +*--nofollow*:: +Do not follow symbolic link if it the last element of the _directory_ path. + +*-x*, *--devno*:: +Show the major/minor numbers of the given blockdevice on standard output. + +include::man-common/help-version.adoc[] + +== EXIT STATUS + +*mountpoint* has the following exit status values: + +*0*:: +success; the directory is a mountpoint, or device is block device on *--devno* + +*1*:: +failure; incorrect invocation, permissions or system error + +*32*:: +failure; the directory is not a mountpoint, or device is not a block device on *--devno* + +== ENVIRONMENT + +*LIBMOUNT_DEBUG*=all:: +enables libmount debug output. + +== NOTES + +The util-linux *mountpoint* implementation was written from scratch for libmount. The original version for sysvinit suite was written by Miquel van Smoorenburg. + +== AUTHORS + +mailto:kzak@redhat.com[Karel Zak] + +== SEE ALSO + +*mount*(8) + +include::man-common/bugreports.adoc[] + +include::man-common/footer.adoc[] + +ifdef::translation[] +include::man-common/translation.adoc[] +endif::[] |