gpt4 book ai didi

用于了解文件系统是否已挂载的 Shell 脚本

转载 作者:行者123 更新时间:2023-12-03 01:29:07 24 4
gpt4 key购买 nike

我在特定目录上安装了 tmpfs 文件系统。我想写一个shell脚本来检查tmpfs文件系统是否已经挂载到目录上。

最佳答案

有一个专门用于此目的的工具:mountpoint(1)

if mountpoint -q "$directory" ; then
echo it is a mounted mountpoint
else
echo it is not a mounted mountpoint
fi

而且您甚至不必抓取字符串即可完成此操作!

请注意,我在 Debian 的 initscripts 包中找到了这个工具。我无法评论它在其他地方的可用性。

关于用于了解文件系统是否已挂载的 Shell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4212522/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com