Evuraan wrote:
> Greetings!
>
> I've a case where I need to put lines with both Indic and English Text
> to a file ( and optionally to stdout):
With...
> What am I doing wrong? My locale and LANG (en_US.UTF-8) etc seem to be
> setup.
> When I attempt this in python3:
...that...
> ml_text = u
Greetings!
I've a case where I need to put lines with both Indic and English Text
to a file ( and optionally to stdout):
# bash;
ml_text="മലയാളം"
en_text="Malayalam"
echo "$ml_text = $en_text" >> /tmp/output.txt
$ cat /tmp/output.txt
മലയാളം = Malayalam
That line above is what's I am trying to