Remove lines that contain non-english (Ascii) characters from a file

Viewed 11913

I have a text file with characters from different languages like (chinese, latin etc)

I want to remove all lines that contain these non-English characters. I want to include all English characters (a-b), numbers (0-9) and all punctuations.

How can I do it using unix tools like awk or sed.

4 Answers
Related