sshfs xx@xx.intranet:/data/nfs_share/dev /Users/xx/mount/sshfs/xx.intranet
log show --predicate 'process == "mount_nfs"' --info --last 1m
cat /var/log/system.log | grep mount_nfs
fusermount -u /path/to/mountpoint
umount /path/to/mountpoint
fusermount -uz /path/to/mountpoint
umount -l /path/to/mountpoint
mount | grep sshfs
diskutil unmount /path/to/mountpoint
sshfs -f [user@]host:[dir] mountpoint
sshfs -o reconnect [user@]host:[dir] mountpoint
sshfs -o delay_connect [user@]host:[dir] mountpoint
sshfs -o sshfs_sync [user@]host:[dir] mountpoint
sshfs -o cache=yes -o kernel_cache -o auto_cache [user@]host:[dir] mountpoint
sshfs -o idmap=user [user@]host:[dir] mountpoint
sshfs -o allow_other [user@]host:[dir] mountpoint
sshfs -F /path/to/ssh_config [user@]host:[dir] mountpoint
sshfs -o max_conns=4 [user@]host:[dir] mountpoint
sshfs -p 2222 [user@]host:[dir] mountpoint
sshfs -o reconnect -o cache=yes -o kernel_cache -o auto_cache -o max_conns=4 example.com:/home/user/data /mnt/remote_data