added custom functions dir in .config

This commit is contained in:
2021-05-03 10:02:45 +02:00
parent 1da2266143
commit 92c0c3e24d
4 changed files with 115 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
#!/bin/bash
custom_func_dir=$HOME/.config/custom_functions
for f in $custom_func_dir/*; do source $f; done
function connectToStorageVM() {
ssh alex@173.212.206.52
}