I am trying to concatenate asterisks (*
) to a string variable. However, I keep getting the files in the current directory instead. I have tried
row+='*'
row+=$row #where row is *
row='*'"$row"
row="\*$row"
row="${row}*"
etc.
row='*'."$row" #produces *.*.*.
I thought \
would escape the *
, but it didn't work.