https://github.com/seqsense/uawscli
µawscli - collection of tiny AWS console client utilities
https://github.com/seqsense/uawscli
Last synced: 5 months ago
JSON representation
µawscli - collection of tiny AWS console client utilities
- Host: GitHub
- URL: https://github.com/seqsense/uawscli
- Owner: seqsense
- License: apache-2.0
- Created: 2020-08-05T06:23:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2026-01-13T02:44:55.000Z (5 months ago)
- Last Synced: 2026-01-13T02:47:15.432Z (5 months ago)
- Language: Go
- Size: 325 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# µawscli - collection of tiny AWS console client utilities
## Install helper script
```shell
# Install helper script
$ curl -sL https://raw.githubusercontent.com/seqsense/uawscli/master/uaws \
-o ~/.local/bin/uaws
$ chmod +x ~/.local/bin/uaws
```
```shell
$ uaws ecr get-login-password
```
will automatically download uaws-ecr-get-login-password under `~/.local/lib/uaws` and execute.
## Install specific utility (without installing helper script)
```shell
# Install latest version of uaws-ecr-get-login-password under ~/.local/bin
$ curl -sL https://raw.githubusercontent.com/seqsense/uawscli/master/uaws \
| sh -s install ecr-get-login-password
# Install latest version of uaws-ecr-get-login-password
# under /path/prefix/bin and /path/prefix/lib/uawscli
$ curl -sL https://raw.githubusercontent.com/seqsense/uawscli/master/uaws \
| sh -s install -i /path/prefix ecr-get-login-password
# Install specific version of uaws-ecr-get-login-password
# under /path/prefix/bin and /path/prefix/lib/uawscli
$ curl -sL https://raw.githubusercontent.com/seqsense/uawscli/master/uaws \
| sh -s install -v v0.0.0 -i /path/prefix ecr-get-login-password
```
```shell
$ uaws-ecr-get-login-password
```
will be available.