trying to fix jgbrowser special char

master
Daniel Napora 2021-01-16 16:03:30 +01:00
parent f817715b00
commit 224f82d381
1 changed files with 5 additions and 2 deletions

View File

@ -58,9 +58,12 @@ printf "%b\n" "<big></big> $OPENTERM,exo-open --launch TerminalEmulator --wor
#printf "%b\n" " $OPENTERM,terminator --working-directory=\"${DIRECTORY:-/}\""
if [ ${#dirs[@]} -ne 0 ]; then
printf "%b\n" "^sep($DIRECTORIES <small>(${#dirs[@]})</small>)"
printf "%s\n" "${dirs[@]}"
printf "%s\n" "${dirs[@]/&/&amp;}"
fi
if [ ${#files[@]} -ne 0 ]; then
printf "%b\n" "^sep($FILES <small>(${#files[@]})</small>)"
printf "%s\n" "${files[@]}"
#printf "%s\n" "${files[@]}"
#okfiles=("${files[@]/</ &lt;}")
printf "%s\n" "${files[@]/&/&amp;}"
fi