回答:
$ perl -ne 'print "$. $_" if m/[\x80-\xFF]/' utf8.txt
2 Pour être ou ne pas être
4 Byť či nebyť
5 是或不
または
$ grep -n -P '[\x80-\xFF]' utf8.txt
2:Pour être ou ne pas être
4:Byť či nebyť
5:是或不
ここで、utf8.txtは
$ cat utf8.txt
To be or not to be.
Pour être ou ne pas être
Om of niet zijn
Byť či nebyť
是或不
テキストファイルのエンコードをUTF-8からASCIIに変更したい...
...非ASCII文字のすべてのインスタンスを置き換えます...
次に、変換ツールにそうするように伝えます。
$ iconv -c -f UTF-8 -t ASCII <<< 'Look at 私.'
Look at .
$ iconv -c -f UTF-8 -t ASCII//translit <<< 'áēìöų'
aeiou
LC_ALL=C grep -n -P [$'\x80'-$'\xFF']
最初のビットが照合をオフにする場所。