print_help_find Subroutine

public subroutine print_help_find()

Arguments

None

Source Code

   subroutine print_help_find
      implicit none
      character(LINE_SIZ) :: header
      character(LINE_SIZ) :: usage(1)
      character(CMD_SIZ) :: cmd(1)
      character(CMD_DESC_SIZ) :: cdesc(1)

      header = "Executes a search."
      usage(1) = "forgex-cli find <command> ..."
      cmd(1) = "match"
      cdesc(1) = "Search for full matches."
      call generate_and_output(header, usage, "COMMANDS", cmd, cdesc)
   end subroutine print_help_find