diff --git a/README.md b/README.md index 0acce61..a48247e 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,27 @@ # Copr Manager - -CLI app for managing Copr repos, written in Go. + +A command line tool for managing Copr repositories, written in Go. +. ## Usage `cpm [OPTION] [REPO(s)...]` ``` -Options: - enable Add or enable one or more Copr repositories - remove Remove one or more Copr repositories - --all Remove all installed Copr repositories - list List Copr repositories in your repo folder +Usage: + cpm [command] + +Available Commands: + completion Generate the autocompletion script for the specified shell + disable Disable one or more Copr repositories without uninstalling them. + enable Enable or add one or more Copr repositories. + help Help about any command + list List installed Copr repositories --enabled List all enabled repositories (default) --disabled List all disabled repositories --all List both disabled and enabled repositories - disable Disable one or more Copr repositories without deleting the repository files - help Display help text + prune Remove duplicate repository configurations. + remove Uninstall one or more Copr repositories. + --all Remove all installed Copr repositories Arguments: [REPO(s)...] One or more repository names formatted as `author/repo` @@ -25,4 +31,9 @@ Examples: cpm disable kylegospo/bazzite cpm remove kylegospo/bazzite cpm list --all -``` \ No newline at end of file +``` + +## Building +```shell +go build -o cpm main.go +```