Removed broken space replacer

This commit is contained in:
2023-02-20 17:34:43 -05:00
parent 1975424886
commit 3cda23ad3d
-1
View File
@@ -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
} &&