On 11/24/2015 12:42 PM, Dave Mitchell wrote:
how can I get the lines containing non ascii characters?
perl -ne'print if /[^\x00-\x7f]/' infile > outfile

...and if you want to look for ascii control characters (and delete) in addition to non-ascii, maybe:

perl -ne 'print if /[^\x20-\x7e]/' infile
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to