aboutsummaryrefslogtreecommitdiff
path: root/shellrc-desktop.d/ssh
diff options
context:
space:
mode:
Diffstat (limited to 'shellrc-desktop.d/ssh')
-rw-r--r--shellrc-desktop.d/ssh19
1 files changed, 19 insertions, 0 deletions
diff --git a/shellrc-desktop.d/ssh b/shellrc-desktop.d/ssh
new file mode 100644
index 0000000..7a1b71f
--- /dev/null
+++ b/shellrc-desktop.d/ssh
@@ -0,0 +1,19 @@
+# vim: ft=sh:
+# These are general ssh helpers that are most likely not usable on server side
+# anyway thus they are deployed on desktop only.
+
+# SSHFS in client mode. In other words it is reverse sshfs mount.
+sshcfs() {
+ local target="$1"
+ local local_dir="$2"
+ local remote_dir="$3"
+ shift 3
+ [[ "$local_dir" = /* ]] || local_dir="$PWD/$local_dir"
+
+ ssh "$@" "$target" mkdir -p "$remote_dir"
+ dpipe \
+ /usr/lib64/misc/sftp-server \
+ = \
+ ssh "$@" "$target" sshfs -o idmap=user -o passive -o allow_other \
+ ":$local_dir" "$remote_dir"
+}