本文介绍了如何测试给出的路径是一个挂载点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设你想测试,如果到/ mnt /磁盘在shell脚本中的挂载点。
你怎么做到这一点?

Suppose do you want test if /mnt/disk is a mount point in a shell script. How do you do this?

推荐答案

我发现,在我的Fedora 7有一个挂载点的命令。

I discover that on my Fedora 7 there is a mountpoint command.

从人的挂载点:

NAME
       mountpoint - see if a directory is a mountpoint

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

显然,它来与sysvinit的包,我不知道是否该命令可在其他系统中。

Apparently it come with the sysvinit package, I don't know if this command is available on other systems.

[root@myhost~]# rpm -qf $(which mountpoint)
sysvinit-2.86-17

这篇关于如何测试给出的路径是一个挂载点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-10 22:01