Sha256: ba2dce850daabcb86d66d7614d39fd22f79cba91db9b5f64c8ac129c2c5380bc
Contents?: true
Size: 328 Bytes
Versions: 9
Compression:
Stored size: 328 Bytes
Contents
#!/usr/bin/env ruby require_relative "../lib/sshman/sshman" # Check if any arguments are passed (i.e., inline commands) if ARGV.empty? # No arguments passed, start the interactive mode Sshman::CLI.start_interactive else # Pass command-line arguments for inline commands (e.g., `sshman list`) Sshman::CLI.start(ARGV) end
Version data entries
9 entries across 9 versions & 1 rubygems