Browse code

remove ! from command line

bash does not like it

```
$ JOB=$(docker run base /bin/sh -c "while true; do echo Hello world!; sleep 1; done")
bash: !: event not found
$
```

Sridhar Ratnakumar authored on 2013/03/21 14:53:42
Showing 1 changed files
... ...
@@ -148,7 +148,7 @@ Starting a long-running worker process
148 148
 	(docker -d || echo "Docker daemon already running") &
149 149
 
150 150
 	# Start a very useful long-running process
151
-	JOB=$(docker run base /bin/sh -c "while true; do echo Hello world!; sleep 1; done")
151
+	JOB=$(docker run base /bin/sh -c "while true; do echo Hello world; sleep 1; done")
152 152
 
153 153
 	# Collect the output of the job so far
154 154
 	docker logs $JOB