pretty

Saturday, January 14, 2023

Grep in utf16 file

A quick way to grep in utf16 by converting it to utf-8 on the fly
iconv -f utf-16 -t utf-8 file.txt | grep query

No comments:

Post a Comment