From c3396ab0526550ba874f3aa5cbeb03a43be31eb9 Mon Sep 17 00:00:00 2001 From: Alex Blank Date: Thu, 7 Oct 2021 22:40:59 +0200 Subject: [PATCH] added server connection function --- .custom_functions | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.custom_functions b/.custom_functions index afba17b..7988d1c 100644 --- a/.custom_functions +++ b/.custom_functions @@ -1,8 +1,12 @@ #!/bin/bash -custom_func_dir=$HOME/.config/custom_functions +custom_func_dir=$HOME/.config/custom_shell_functions for f in $custom_func_dir/*; do source $f; done +function connectToServer() { + ssh alex@65.21.140.171 +} + function connectToStorageVM() { ssh alex@173.212.206.52 }