Go to file
Augusto Dwenger J. 8f3304b56f Fix prompt indicator 2023-07-28 19:10:04 +02:00
.gitignore Add arm64 support 2019-05-05 09:21:06 -05:00
Dockerfile Add build stage to the docker image build 2021-03-08 00:26:53 +01:00
LICENSE Add copyright holder to the license file 2021-03-07 23:51:58 +01:00
README.md Add note about the tested support for minecraft in readme 2023-07-28 14:52:31 +02:00
go.mod Change module name to match repository name 2022-03-04 01:13:46 +01:00
go.sum Update rcon lib to version 1.0.1 2022-03-04 01:06:10 +01:00
main.go Fix prompt indicator 2023-07-28 19:10:04 +02:00

README.md

rcon-cli

A little RCON cli written in golang.

This is a fork from itzg/rcon-cli with following extra features:

  • Provied a smaller binary (ca. 50% smaller).
  • Replace base RCON lib from james4k/rcon with hamburghammer/rcon.
  • Remove config.yml support.
  • Change the Dockerfile to have build support.

Note: This tool is primarily being maintained to support minecraft RCON implementation.

Installation

From Source

Clone the repository and install it with go install (requires working go installation)

Docker/Podman

Clone the repository and use docker/podman to build a image with the executable docker build -t hamburghammer/rcon-cli . Start the image docker run hamburghammer/rcon-cli -h

Usage

rcon-cli is a CLI to interact with a RCON server.
It can be run in an interactive mode or to execute a single command.

USAGE:
	rcon-cli [FLAGS] [RCON command ...]
	
FLAGS:
  -h, --help              Prints this help message and exits.
      --host string       RCON server's hostname. (default "localhost")
      --password string   RCON server's password.
      --port string       RCON server's port. (default "25575")

ENVIRONMENT VARIABLE:
	All flags can be set through the flag name in capslock with the RCON_CLI_ prefix (see examples).
	Flags have allways priority over env vars!

EXAMPLES:
	rcon-cli --host 127.0.0.1 --port 25575
	rcon-cli --password admin123 stop
	RCON_CLI_PORT=25575 rcon-cli stop

LICENSE

The software is licensed under the Apache-2.0 license.