Browse Source

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 12 years ago
parent
commit
3bb176d8ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -148,7 +148,7 @@ Starting a long-running worker process
 	(docker -d || echo "Docker daemon already running") &
 	(docker -d || echo "Docker daemon already running") &
 
 
 	# Start a very useful long-running process
 	# Start a very useful long-running process
-	JOB=$(docker run base /bin/sh -c "while true; do echo Hello world!; sleep 1; done")
+	JOB=$(docker run base /bin/sh -c "while true; do echo Hello world; sleep 1; done")
 
 
 	# Collect the output of the job so far
 	# Collect the output of the job so far
 	docker logs $JOB
 	docker logs $JOB