unified style (#5725)

This commit is contained in:
chenhonggc
2017-10-03 08:50:26 +08:00
committed by Steve Perry
parent e4fd3f81a8
commit 3998502f80
@@ -39,8 +39,8 @@ Next, expand the template into multiple files, one for each item to be processed
```shell
# Expand files into a temporary directory
mkdir ./jobs
for i in apple banana cherry
$ mkdir ./jobs
$ for i in apple banana cherry
do
cat job.yaml.txt | sed "s/\$ITEM/$i/" > ./jobs/job-$i.yaml
done