Reputation: 399
After installing awscli
. I tried the help command as mentioned in the documentation,
$ aws help
When I do this, I can see the following page full screen. and can not seem to get out of it.
I tried Ctrl+C
and it does not go back to my Ubuntu command line.
AWS() AWS()
NAME
aws -
DESCRIPTION
The AWS Command Line Interface is a unified tool to manage your AWS
services.
SYNOPSIS
aws [options] <command> <subcommand> [parameters]
Use aws command help for information on a specific command. Use aws
help topics to view a list of available help topics. The synopsis for
each command shows its parameters and their usage. Optional parameters
are shown in square brackets.
Upvotes: 20
Views: 19766
Reputation: 1
Adding "&" at the end suspends output/exits
aws ecr create-repository --repository-name backend &
Upvotes: -1
Reputation: 21
Press q to exit.
You can find more detailed information here: http://man7.org/linux/man-pages/man1/more.1.html
Upvotes: 2
Reputation: 270134
The manual pages use the more
command.
Some useful commands:
Reference: Everything You Need To Know About The More Command
So, just hit q.
Upvotes: 45