Skip to content

Commit

Permalink
README: Fix quoting in for loop.
Browse files Browse the repository at this point in the history
The quoting made the for loop iterate only once.
  • Loading branch information
nh2 committed Jun 27, 2018
1 parent 54c22fc commit 1dc56cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -413,7 +413,7 @@ $ pdsh -b -w '10.0.1.1,10.0.2.1,10.0.3.1' \
After the previous command finishes, we can gather the result files to use on our report.

```shell
$ for machine in "10.0.1.1 10.0.2.1 10.0.3.1"; do
$ for machine in 10.0.1.1 10.0.2.1 10.0.3.1; do
scp $machine:~/result.bin $machine.bin &
done
```
Expand Down

0 comments on commit 1dc56cb

Please sign in to comment.