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 inc
Perl supports an [:ascii:] character class.
[:ascii:]
perl -nle 'print if m{^[[:ascii:]]+$}' inputfile