-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
370 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.swp | ||
.task | ||
tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# SQS CLI | ||
|
||
``` | ||
Usage: | ||
sqs [command] | ||
Available Commands: | ||
completion generate the autocompletion script for the specified shell | ||
help Help about any command | ||
ls list queues | ||
mv Move messages from one queue to another | ||
send Send a message to queue | ||
Flags: | ||
-h, --help help for sqs | ||
Use "sqs [command] --help" for more information about a command. | ||
``` | ||
|
||
## Why? | ||
|
||
Because scripting awscli calls together is not nice. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# https://taskfile.dev | ||
|
||
version: '3' | ||
|
||
tasks: | ||
default: | ||
cmds: | ||
- go run cmd/sqs/main.go -h | ||
sources: | ||
- "*.go" | ||
- cmd/sqs/*.go | ||
|
||
install: | ||
cmds: | ||
- go install github.com/kerma/sqscli/cmd/sqs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.