I am importing data from a large text file into a database and am getting an error on line X of the file. If I look at the line with the less viewer I do not see anything strange, because, most probably, the line has non printable characters. Then I tried to sed the line and check it with a hexdump:
sed -n 2540283p 30gb_large_file.fzp | hexdump -C
again, nothing, most probably, because sed filtered out all non-printable characters.
Any comments how I could see what's happening on the specific line of a large file in hex?