Lines Matching full:mountpoint
0 /* mountpoint.c - Check if a directory is a mountpoint.
5 USE_MOUNTPOINT(NEWTOY(mountpoint, "<1qdx[-dx]", TOYFLAG_BIN))
7 config MOUNTPOINT
8 bool "mountpoint"
11 usage: mountpoint [-q] [-d] directory
12 mountpoint [-q] [-x] device
14 -q Be quiet, return zero if directory is a mountpoint
47 // TODO: Ignore the fact a file can be a mountpoint for --bind mounts.
62 printf("%s is %sa mountpoint\n", *toys.optargs, toys.exitval ? "not " : "");