From 1d03fc91cd0b455e0721378aa3187d9801d681e1 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Fri, 1 Jan 2021 18:37:48 +0200 Subject: [PATCH] unssh script. For specifying a different SSH client (like $GIT_SSH_COMMAND or $ANSIBLE_SSH_EXECUTABLE). Keep the shell alias for tab completion. --- Documents/bin/unssh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 Documents/bin/unssh diff --git a/Documents/bin/unssh b/Documents/bin/unssh new file mode 100755 index 0000000..21ebe60 --- /dev/null +++ b/Documents/bin/unssh @@ -0,0 +1,3 @@ +#!/bin/sh + +exec ssh -o 'UserKnownHostsFile /dev/null' -o 'StrictHostKeyChecking no' "$@" -- GitLab