Answers for "concat strings inside array bash script"

0

concat strings inside array bash script

List="A B C D"
for I in $List
do
    OUT=${OUT:+$OUT }-$I
done
Posted by: Guest on November-17-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language