How to remove all of the diacritics from a file?

前端 未结 9 1552
Happy的楠姐
Happy的楠姐 2020-12-05 00:10

I have a file containing many vowels with diacritics. I need to make these replacements:

  • Replace ā, á, ǎ, and à with a.
  • Replace ē, é, ě, and è with
9条回答
  •  自闭症患者
    2020-12-05 00:17

    I like iconv as it handles all accents variations :

    cat non-ascii.txt | iconv -f utf8 -t ascii//TRANSLIT//IGNORE > ascii.txt
    

提交回复
热议问题