mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -04:00
git-subtree-dir: contrib/libcbor git-subtree-mainline:293663f4dagit-subtree-split:5b2defbd2a
5 lines
140 B
Ruby
Executable file
5 lines
140 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
lst = (ARGV.empty? ? STDIN.read : IO.binread(ARGV[0])).bytes.map {|_| '0x%02X' % _ }
|
|
puts lst.size
|
|
puts lst.join(', ')
|