From 3cda23ad3d3e0369b8a777ba1b6a4ab4b268ea1e Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Mon, 20 Feb 2023 17:34:43 -0500 Subject: [PATCH] Removed broken space replacer --- extra/sshyp-completion.bash | 1 - 1 file changed, 1 deletion(-) 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 } &&