class Sshster::Actions::Help

Public Instance Methods

run() click to toggle source
# File lib/sshster/actions/help.rb, line 5
      def run
        puts <<~HELP
          sshster [-h] [-c] <command>

          Commands:

          init    Initialize sshster configuration files inside of yours ~/.ssh dir
          compose Compile your projects to ~/.ssh/config file
          help    Show this help
        HELP
      end