transferring several commands from private repo

This commit is contained in:
Ville Rantanen
2021-10-08 11:19:58 +03:00
parent 754938ca32
commit 707eba3ead
20 changed files with 1140 additions and 289 deletions

9
web/ssh-nosave Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if [[ "$1" = "-h" ]]; then
echo "Set options to not use host key checking, and pass all commands to 'ssh'."
exit
fi
exec ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "$@"