I\'m trying to use something in bash to show me the line endings in a file printed rather than interpreted. The file is a dump from SSIS/SQL Server being read in by a Linux
You can use xxd to show a hex dump of the file, and hunt through for "0d0a" or "0a" chars.
xxd
You can use cat -v as @warriorpostman suggests.
cat -v