in reply to Non english characters
If the French did not display, either the LC_ALL is not properly set, or the editor is not storing its words in utf8# Set LC_ALL to fr_FR.utf8 (or whatever is the proper locale) $ export LC_ALL=fr_FR.utf8 # ensure that french words are properly is displayed $ cat french.tx # you should see perl displaying proper French $ cat french.txt | perl -Mencoding='utf8' -e 'print <STDIN>'
|
|---|