在我的计算机中,我有一个ntfs网络磁盘,使用cygwin和bash,我有一些自动脚本(后提交git挂钩)来将信息复制到ntfs磁盘。
使用bash (在cygwin中),如何检查是否启用ntfs?
发布于 2014-02-25 01:55:37
if mount | grep -q /path/to/device/or/mount/point ; then
# it's mounted
else
# it's not
fihttps://stackoverflow.com/questions/22002807
复制相似问题