Skip to content

Commit

Permalink
Add missing backslash to commands
Browse files Browse the repository at this point in the history
  • Loading branch information
salaheldinaz authored and ferronrsmith committed Jan 6, 2020
1 parent 16d784d commit cc89ad9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ New options, `--suffix` allows you to add a suffix to the index name being creat
# backup ES indices & all their type to the es_backup folder
multielasticdump \
--direction=dump \
--match='^.*$'
--match='^.*$' \
--input=http://production.es.com:9200 \
--output=/tmp/es_backup

Expand All @@ -519,9 +519,9 @@ multielasticdump \
# NB: analyzer & alias types are ignored by default
multielasticdump \
--direction=dump \
--match='^.*-index$'
--match='^.*-index$'\
--input=http://production.es.com:9200 \
--ignoreType='mapping,settings,template'
--ignoreType='mapping,settings,template' \
--output=/tmp/es_backup
```

Expand Down

0 comments on commit cc89ad9

Please sign in to comment.