aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xkvmx22
1 files changed, 11 insertions, 11 deletions
diff --git a/kvmx b/kvmx
index a2578d8..e4d1cd9 100755
--- a/kvmx
+++ b/kvmx
@@ -1007,15 +1007,15 @@ function kvmx_sshdir {
#exit 1
fi
- DEST="$1"
+ DEST="$*"
# Defaults to the current folder
if [ -z "$DEST" ]; then
DEST="`pwd`"
# Fix ~/ path
- if echo $DEST | grep -q -e "^$HOME"; then
- DEST="$(echo $DEST | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
+ if echo "$DEST" | grep -q -e "^$HOME"; then
+ DEST="$(echo "$DEST" | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
fi
fi
@@ -1405,8 +1405,8 @@ function kvmx_rsync_to {
fi
# Fix ~/ path
- if echo $DEST | grep -q -e "^$HOME"; then
- DEST="$(echo $DEST | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
+ if echo "$DEST" | grep -q -e "^$HOME"; then
+ DEST="$(echo "$DEST" | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
fi
SSH="`cat $SSHFILE`"
@@ -1442,8 +1442,8 @@ function kvmx_rsync_from {
fi
# Fix ~/ path
- if echo $ORIG | grep -q -e "^$HOME"; then
- ORIG="$(echo $ORIG | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
+ if echo "$ORIG" | grep -q -e "^$HOME"; then
+ ORIG="$(echo "$ORIG" | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
fi
SSH="`cat $SSHFILE`"
@@ -1474,8 +1474,8 @@ function kvmx_scp_from {
fi
# Fix ~/ path
- if echo $ORIG | grep -q -e "^$HOME"; then
- ORIG="$(echo $ORIG | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
+ if echo "$ORIG" | grep -q -e "^$HOME"; then
+ ORIG="$(echo "$ORIG" | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
fi
SSH="`cat $SSHFILE`"
@@ -1506,8 +1506,8 @@ function kvmx_scp_to {
fi
# Fix ~/ path
- if echo $DEST | grep -q -e "^$HOME"; then
- DEST="$(echo $DEST | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
+ if echo "$DEST" | grep -q -e "^$HOME"; then
+ DEST="$(echo "$DEST" | sed -e "s|^$HOME|/home/$SSH_LOGIN|")"
fi
SSH="`cat $SSHFILE`"