Last active
December 15, 2016 10:57
-
-
Save badsyntax/ca33f15337adc5d21118 to your computer and use it in GitHub Desktop.
SSHFS usage on OSX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mount | |
sshfs [email protected]: local_dir/ -o uid=$(id -u) -o gid=$(id -g) | |
# Unmount | |
sudo umount -f local_dir/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment