Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsでcygwinのsedを使用して、テキストファイルでいくつかの置換を行っています。通常の (ANSI) ファイルではすべて正常に動作しますが、utf-16 ファイルでは何もしません (置換は行われません)。両方のタイプのファイルで同時に機能させる方法を知っていますか?
これをiconvでラップします
iconv -f utf-16 -t utf-8 <input | sed -e expr | iconv -f utf-8 -t utf-16 >output