From b65ca41f92c2dc708a448aa9e15a7ae4f376a7be Mon Sep 17 00:00:00 2001 From: pierwill Date: Thu, 1 Oct 2020 12:14:21 -0700 Subject: [PATCH] Minor formatting changes --- .../v2.0/reference/cli/influx/export/all.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/content/influxdb/v2.0/reference/cli/influx/export/all.md b/content/influxdb/v2.0/reference/cli/influx/export/all.md index e36ea7fc2..204f37bc3 100644 --- a/content/influxdb/v2.0/reference/cli/influx/export/all.md +++ b/content/influxdb/v2.0/reference/cli/influx/export/all.md @@ -40,16 +40,23 @@ influx export all [flags] ## Examples ### Export all resources in an organization as a template -```influx export all --org $INFLUX_ORG``` +```sh +influx export all --org $INFLUX_ORG +``` ### Export all bucket resources as a template -```influx export all --org $INFLUX_ORG --filter=resourceKind=Bucket``` +```sh +influx export all --org $INFLUX_ORG --filter=resourceKind=Bucket +``` ### Export all resources associated with label Foo -```influx export all --org $INFLUX_ORG --filter=labelName=Foo``` +```sh +influx export all --org $INFLUX_ORG --filter=labelName=Foo +``` ### Export all bucket resources and filter by label Foo -```influx export all --org $INFLUX_ORG \ +```sh +influx export all --org $INFLUX_ORG \ --filter=resourceKind=Bucket \ --filter=labelName=Foo ``` @@ -57,7 +64,7 @@ influx export all [flags] ### Export all bucket or dashboard resources and filter by label Foo. Note: "like" filters are unioned and filter types are intersections. -For example, the following will export a resource if it is a dashboard or bucket and has an associated label of Foo. +For example, the following will export a resource if it is a dashboard or bucket and has an associated label of `Foo`. ```influx export all --org $INFLUX_ORG \ --filter=resourceKind=Bucket \