diff options
author | Elliott Hughes <enh@google.com> | 2019-02-15 12:20:42 -0800 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-02-15 15:31:51 -0600 |
commit | a7a3c411fdb002452dea75db517a0402fcdd3223 (patch) | |
tree | dd924b79a330befb5e43341135857332febc0f25 | |
parent | 86cf62c69e9a1869054141ddaee5087e4c9fc417 (diff) | |
download | toybox-a7a3c411fdb002452dea75db517a0402fcdd3223.tar.gz |
mountpoint: add missing synopsis.
-rw-r--r-- | toys/other/mountpoint.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/toys/other/mountpoint.c b/toys/other/mountpoint.c index 98e1d309..a97c600a 100644 --- a/toys/other/mountpoint.c +++ b/toys/other/mountpoint.c @@ -8,8 +8,10 @@ config MOUNTPOINT bool "mountpoint" default y help - usage: mountpoint [-q] [-d] directory - mountpoint [-q] [-x] device + usage: mountpoint [-qd] DIR + mountpoint [-qx] DEVICE + + Check whether the directory or device is a mountpoint. -q Be quiet, return zero if directory is a mountpoint -d Print major/minor device number of the directory |