Skip to content

Commit c46abdb

Browse files
authored
Merge pull request #2 from halprin/update-readme
Update README.md
2 parents fced583 + 090b45f commit c46abdb

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
# delete-dynamodb-items
22
Bulk delete items from a DynamoDB table.
3+
4+
## Usage
5+
6+
_**Warning**: running this command will result in all the items in the specified table to be deleted immediately! There
7+
is no "are you sure?" prompt._
8+
9+
```shell
10+
delete-dynamodb-items <table name>
11+
```
12+
13+
The program uses the default AWS credential algorithm to determine what IAM entity and region is used. E.g. the
14+
`~/.aws/credentials` file, the `AWS_*` environment variables, etc.
15+
16+
## Build
17+
18+
Run the following to compile your own copy from source.
19+
20+
```shell
21+
go get -v -t -d ./cmd/
22+
go build -o delete-dynamodb-items -v ./cmd/
23+
```

0 commit comments

Comments
 (0)