You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2016/02/01 18:28:58 UTC

[24/50] brooklyn-docs git commit: Small changes to CLI docs to make things more consistent

Small changes to CLI docs to make things more consistent


Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/91025935
Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/91025935
Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/91025935

Branch: refs/heads/0.4.0
Commit: 9102593578e8ce6f8b5d545a7b6db0da248f5244
Parents: ea8fb02
Author: Cosmin Dumitrache <co...@cloudsoftcorp.com>
Authored: Wed Jul 25 18:21:23 2012 +0100
Committer: Cosmin Dumitrache <co...@cloudsoftcorp.com>
Committed: Wed Jul 25 18:31:31 2012 +0100

----------------------------------------------------------------------
 docs/use/guide/management/index.md | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/91025935/docs/use/guide/management/index.md
----------------------------------------------------------------------
diff --git a/docs/use/guide/management/index.md b/docs/use/guide/management/index.md
index 17ad3c0..ec278e5 100644
--- a/docs/use/guide/management/index.md
+++ b/docs/use/guide/management/index.md
@@ -59,20 +59,20 @@ Brooklyn comes with a Command Line Interface (cli) that makes it easier to launc
 In order to have easy access to the cli it is useful to configure the PATH environment variable to also point to the cli's bin directory:
 
 {% highlight bash %}
-% BROOKLYN_HOME=/path/to/brooklyn/
-% export PATH=$PATH:$BROOKLYN_HOME/usage/dist/target/brooklyn-dist/bin/
+BROOKLYN_HOME=/path/to/brooklyn/
+export PATH=$PATH:$BROOKLYN_HOME/usage/dist/target/brooklyn-dist/bin/
 {% endhighlight %}
 
 If you have set this up correctly you should be able to invoke the ```brooklyn``` command:
 
 {% highlight bash %}
-% brooklyn
+brooklyn
 {% endhighlight %}
 
 To get information about all the supported cli options just run:
 
 {% highlight bash %}
-% brooklyn help
+brooklyn help
 usage: brooklyn [(-q | --quiet)] [(-v | --verbose)] <command> [<args>]
 
 The most commonly used brooklyn commands are:
@@ -85,13 +85,13 @@ See 'brooklyn help <command>' for more information on a specific command.
 Here is an example of the commands you might run to get the Brooklyn code, compile it and launch an application:
 
 {% highlight bash %}
-% git clone https://github.com/brooklyncentral/brooklyn.git
-% cd brooklyn
-% mvn clean install -DskipTests
-% BROOKLYN_HOME=$(pwd)
-% export PATH=$PATH:$BROOKLYN_HOME/usage/dist/target/brooklyn-dist/bin/
-% export BROOKLYN_CLASSPATH=$BROOKLYN_HOME/examples/simple-web-cluster/target/brooklyn-example-simple-web-cluster-0.4.0-SNAPSHOT.jar
-% brooklyn launch --app brooklyn.demo.SingleWebServerExample --location localhost
+git clone https://github.com/brooklyncentral/brooklyn.git
+cd brooklyn
+mvn clean install -DskipTests
+BROOKLYN_HOME=$(pwd)
+export PATH=${PATH}:${BROOKLYN_HOME}/usage/dist/target/brooklyn-dist/bin/
+export BROOKLYN_CLASSPATH=${BROOKLYN_HOME}/examples/simple-web-cluster/target/classes
+brooklyn launch --app brooklyn.demo.SingleWebServerExample --location localhost
 {% endhighlight %}