标签: bash cygwin ntfs
在我的计算机中,我有一个ntfs网络磁盘,并且使用cygwin和bash我有一些自动脚本(post-commit git hooks)来获取ntfs磁盘的复制信息。
使用bash(在cygwin中),我如何检查ntfs是否启用?
答案 0 :(得分:0)
if mount | grep -q /path/to/device/or/mount/point ; then # it's mounted else # it's not fi