chapter 8: Performing Repetitive Tasks¶
이 장에서는 다음을 배우게 된다.
▶ Performing a task a specific number of times
▶ Performing a task until completion
▶ Placing one task loop within another
8.1 Processing Data Using the for Statement¶
8.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
.