Skip to content

Instantly share code, notes, and snippets.

@ryancat
ryancat / gist:da6423ef5246c96a61e6
Created December 5, 2014 07:42
how to move file in and out from hard drive with mac
# 用 root 身份做如下操作 (高危! 请切记自己在干什么)
sudo -s
cd /sbin
# 将系统自带的挂载程序改名
mv mount_ntfs mount_ntfs_orig
# 新建我们要的挂载脚本并编辑
vim mount_ntfs
#!/bin/sh
/sbin/mount_ntfs_orig -o rw,nobrowse "$@"