I need to convert all text to lowercase, but not using the traditional "tr" command because it does not handle UTF-8 languages properly.
Is there a nice way to do that? I need some UNIX filter so I can process this in a pipe.
|
|
|
Gnu sed should be able to handle unicode. Try
|
||||
|
|
|
If you can use Python then such code can help you:
On my Windows machine (sorry :) I can use it as filter:
|
||||