假设您要测试/ mnt / disk是否是Shell脚本中的安装点。
你怎么做到这一点?

最佳答案

我发现在Fedora 7上有一个mountpoint命令。

从man mountpoint:

NAME
       mountpoint - see if a directory is a mountpoint

SYNOPSIS
       /bin/mountpoint [-q] [-d] /path/to/directory
       /bin/mountpoint -x /dev/device

显然它是随sysvinit软件包一起提供的,我不知道此命令在其他系统上是否可用。
[root@myhost~]# rpm -qf $(which mountpoint)
sysvinit-2.86-17

07-24 19:50