Created
September 19, 2018 22:40
-
-
Save netinlet/dcbb2738b3917233e355edeb2459d881 to your computer and use it in GitHub Desktop.
Find non-ascii characters in file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Found at https://superuser.com/questions/1002080/how-to-get-csvkit-to-recognise-long-ascii-lines | |
awk '/[^\x00-\x7F]/{ print NR ":", $0 }' data.csv | less |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment