Last active
December 18, 2015 07:10
-
-
Save lee-dohm/5745075 to your computer and use it in GitHub Desktop.
Code samples for blog article: "Text File Line Endings"
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
Get-Content -Encoding byte test.rb |
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
lines = nil | |
File.open(__FILE__, 'r') do |file| | |
lines = file.readlines | |
end | |
lines.each do |line| | |
puts line.bytes.map { |b| "%02X" % b }.join(' ') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment