Skip to content

Commit

Permalink
feat: rename to aboxes
Browse files Browse the repository at this point in the history
Boxes is too generic and taken in the AUR
  • Loading branch information
AlexanderGrooff committed Jul 30, 2023
1 parent fc14cea commit a5464f8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Boxes
# aboxes

Run one or more commands on multiple remote hosts via SSH.
This is most commonly used for retrieving ad-hoc information without too much fuzz.

## Usage

```bash
$ boxes run -t theta,testalex.h -c hostname
$ aboxes run -t theta,testalex.h -c hostname
INFO[0000] theta: theta
INFO[0000] testalex.h: j6yt29-testalex-magweb-do.nodes.hypernode.io

# Format output with Go template syntax
$ boxes run -t theta,testalex.h -c hostname --format "{{.Target}} -> {{.Stdout}}"
$ aboxes run -t theta,testalex.h -c hostname --format "{{.Target}} -> {{.Stdout}}"
INFO[0000] theta -> theta
INFO[0000] testalex.h -> j6yt29-testalex-magweb-do.nodes.hypernode.io
```
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var rootCmd = &cobra.Command{
log.SetLevel(log.InfoLevel)
}
},
Use: "boxes",
Use: "aboxes",
Short: "Manage multiple machines",
Long: `Run commands in a parallel manner on multiple machines.
This is typically useful for ad-hoc commands without too much fuzz.`,
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/AlexanderGrooff/boxes
module github.com/AlexanderGrooff/aboxes

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Copyright © 2023 NAME HERE <EMAIL ADDRESS>
*/
package main

import "github.com/AlexanderGrooff/boxes/cmd"
import "github.com/AlexanderGrooff/aboxes/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit a5464f8

Please sign in to comment.