Skip to content

µawscli - collection of tiny AWS console client utilities

License

Notifications You must be signed in to change notification settings

seqsense/uawscli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5c1f43c · Aug 20, 2020

History

29 Commits
Aug 11, 2020
Aug 20, 2020
Aug 3, 2020
Aug 18, 2020
Aug 3, 2020
Aug 3, 2020
Aug 11, 2020
Aug 19, 2020
Aug 20, 2020
Aug 7, 2020
Aug 7, 2020
Aug 19, 2020

Repository files navigation

µawscli - collection of tiny AWS console client utilities

Install helper script

# Install helper script
$ curl -sL https://raw.githubusercontent.com/seqsense/uawscli/master/uaws \
  -o ~/.local/bin/uaws
$ chmod +x ~/.local/bin/uaws
$ 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)

# 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
$ uaws-ecr-get-login-password

will be available.