diff --git a/extra/sshyp-completion.bash b/extra/sshyp-completion.bash index abea8a2..904760e 100755 --- a/extra/sshyp-completion.bash +++ b/extra/sshyp-completion.bash @@ -6,7 +6,6 @@ _path_gen() { mapfile -t full_paths < <(find "$sshyp_path" -type f -exec ls {} \;) for path in "${full_paths[@]}"; do trimmed_path=$(echo ${path%????} | cut -c"$sshyp_path_length"-) - trimmed_path=$(echo ${trimmed_path// /\\ }) trimmed_paths+=("$trimmed_path") done } &&