From d9be09ac4a4222975e063b2fba2643a018165c63 Mon Sep 17 00:00:00 2001 From: fanta Date: Wed, 31 Aug 2022 12:51:52 +0200 Subject: [PATCH] fix static dir --- q | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/q b/q index 107943e..3ddec48 100755 --- a/q +++ b/q @@ -1,5 +1,5 @@ #!/bin/bash -vmsDir="/home/fanta/vms" +vmsDir="~/vms" function main(){ downloadSysList @@ -42,7 +42,8 @@ function showVms() { echo -en "\nVMs List:\n\n" cd $vmsDir ls -1 - echo -en "\n" + echo -en "\nVirtual machines dir: $vmsDir\n\nUse Change to ~/vms directory to start to work. Happy hacking !" + } main