Skip to content

Latest commit

 

History

History
37 lines (18 loc) · 579 Bytes

chapter7.rst

File metadata and controls

37 lines (18 loc) · 579 Bytes

chapter 7: Making Decisions

7.1 Making Simple Decisions Using the if Statement

7.1.1 Linux

Automatic Install Script

$ sudo wget -qO- https://get.docker.com/ | sh

remove hell-world

$ sudo docker rm `sudo docker ps -aq`
$ sudo docker rmi hello-world

.

7.2 Choosing Alternatives Using the if...else Statement

7.3 Using Nested Decision Statements