📜  linux 检查 dir 是否已挂载 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:12.256000             🧑  作者: Mango

代码示例1
if mountpoint -q -- "$dir"; then
  printf '%s\n' "$dir is a mount point"
fi