diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..436018e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sshfs_connect \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..1ddea46 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +Quickly mount remote systems via SSHFS based on your ssh_config + +# Dependencies + +- [SSHFS](https://wiki.archlinux.org/title/SSHFS) +- [Go](https://wiki.archlinux.org/title/Go) + +# Usage + +``` +sshfs_connect +``` + +## Arguments + +| Flag | Description | +| ------------- | ------------- | +| -e | open mountpoint in your editor | + +# Example ssh config + +See https://wiki.archlinux.org/title/OpenSSH#Configuration + +``` +Host myserver + HostName 127.0.0.1 + User sshusername + IdentityFile ~/.ssh/id_rsa +``` \ No newline at end of file diff --git a/sshfs_connect b/sshfs_connect deleted file mode 100755 index e6f504a..0000000 Binary files a/sshfs_connect and /dev/null differ