We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c9f55 commit c1eaeb0Copy full SHA for c1eaeb0
lib/redhound/command.rb
@@ -18,16 +18,18 @@ def run(argv)
18
19
def parse(argv)
20
OptionParser.new do |o|
21
- o.banner = <<~'BANNER'
+ o.banner = <<~'BANNER' + <<~BANNER2
22
___ ____ __
23
/ _ \___ ___/ / / ___ __ _____ ___/ /
24
/ , _/ -_) _ / _ \/ _ \/ // / _ \/ _ /
25
/_/|_|\__/\_,_/_//_/\___/\_,_/_//_/\_,_/
26
+
27
+ BANNER
28
Version: #{Redhound::VERSION}
29
Dump and analyze network packets.
30
31
Usage: redhound [options] ...
- BANNER
32
+ BANNER2
33
o.separator ""
34
o.separator "Options:"
35
o.on("-i", "--interface INTERFACE", "name or idx of interface") { |v| @options[:ifname] = v }
0 commit comments