Skip to content

Commit

Permalink
JDF-577: Replace 'command line' with 'command prompt' when referring …
Browse files Browse the repository at this point in the history
…to a terminal
  • Loading branch information
sgilda committed Dec 16, 2013
1 parent 73b2e58 commit cf685d7
Show file tree
Hide file tree
Showing 65 changed files with 216 additions and 216 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ To run these quickstarts with the provided build scripts, you need the following

2. Maven 3.0.0 or newer, to build and deploy the examples
* If you have not yet installed Maven, see the [Maven Getting Started Guide](http://maven.apache.org/guides/getting-started/index.html) for details.
* If you have installed Maven, you can check the version by typing the following in a command line:
* If you have installed Maven, you can check the version by typing the following in a command prompt:

mvn --version

Expand Down Expand Up @@ -428,21 +428,21 @@ Use the following steps to install and configure PostgreSQL on Linux. You can do
1. Install PostgreSQL
* The yum install instructions for PostgreSQL can be found here: <http://yum.postgresql.org/howtoyum.php/>
* Download the repository RPM from here: <http://yum.postgresql.org/repopackages.php/>
* To install PostgreSQL, in a command line type `sudo rpm -ivh RPM_FILE_NAME`, where RPM_FILE_NAME is the name of the downloaded repository RPM file, for example:
* To install PostgreSQL, in a command prompt type `sudo rpm -ivh RPM_FILE_NAME`, where RPM_FILE_NAME is the name of the downloaded repository RPM file, for example:

sudo rpm -ivh pgdg-fedora92-9.2-5.noarch.rpm
* Edit your distributions package manager definitions to exclude PostgreSQL. See the "important note" on <http://yum.postgresql.org/howtoyum.php/> for details on how to exclude install-and-configure-the-postgresql-database packages from the repository of the distribution.
* Install _postgresql92_ and _postgres92-server_ by typing the following in a command line:
* Install _postgresql92_ and _postgres92-server_ by typing the following in a command prompt:

sudo yum install postgresql92 postgresql92-server
2. Set a password for the _postgres_ user
* In a command line, login as root and set the postgres password by typing the following commands:
* In a command prompt, login as root and set the postgres password by typing the following commands:

su
passwd postgres
* Choose a password
3. Configure the test database
* In a command line, login as the _postgres_ user, navigate to the postgres directory, and initialize the database by typing:
* In a command prompt, login as the _postgres_ user, navigate to the postgres directory, and initialize the database by typing:

su postgres
cd /usr/pgsql-9.2/bin/
Expand All @@ -456,10 +456,10 @@ Use the following steps to install and configure PostgreSQL on Linux. You can do
max_connections = 10

4. Start the database server
* In the same command line, type the following:
* In the same command prompt, type the following:

./postgres -D /var/lib/pgsql/9.2/data
* Note, this command does not release the command line. In the next step you need to open a new command line.
* Note, this command does not release the command prompt. In the next step you need to open a new command prompt.
5. Create a database for the quickstart (as noted above, replace QUICKSTART_DATABASENAME with the name provided in the particular quickstart)
* Open a new command prompt and login again as the _postgres_ user, navigate to the postgres directory, and create the database by typing the following:

Expand Down
4 changes: 2 additions & 2 deletions bean-validation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -49,7 +49,7 @@ This quickstart provides Arquillian tests. By default, these tests are configure
_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:

mvn clean test -Parq-jbossas-remote
Expand Down
6 changes: 3 additions & 3 deletions bmt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -56,7 +56,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand Down Expand Up @@ -87,7 +87,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
6 changes: 3 additions & 3 deletions cdi-alternative/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -55,7 +55,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand All @@ -80,7 +80,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
6 changes: 3 additions & 3 deletions cdi-decorator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -47,7 +47,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand Down Expand Up @@ -75,7 +75,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
6 changes: 3 additions & 3 deletions cdi-injection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -44,7 +44,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand All @@ -62,7 +62,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
8 changes: 4 additions & 4 deletions cdi-interceptors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -45,7 +45,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand Down Expand Up @@ -82,7 +82,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand All @@ -96,7 +96,7 @@ This quickstart provides Arquillian tests. By default, these tests are configure
_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:

mvn clean test -Parq-jbossas-remote
Expand Down
4 changes: 2 additions & 2 deletions cdi-portable-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -59,7 +59,7 @@ This quickstart provides Arquillian tests. By default, these tests are configure
_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:

mvn clean test -Parq-jbossas-remote
Expand Down
6 changes: 3 additions & 3 deletions cdi-stereotype/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -50,7 +50,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand Down Expand Up @@ -88,7 +88,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
4 changes: 2 additions & 2 deletions cdi-veto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ If you have not yet done so, you must [Configure Maven](../README.md#configure-m
Start the JBoss Server
-------------------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server:

For Linux: JBOSS_HOME/bin/standalone.sh
Expand All @@ -58,7 +58,7 @@ This quickstart provides Arquillian tests. By default, these tests are configure
_NOTE: The following commands assume you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Run the Arquillian Tests](../README.md#run-the-arquillian-tests) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type the following command to run the test goal with the following profile activated:

mvn clean test -Parq-jbossas-remote
Expand Down
6 changes: 3 additions & 3 deletions cluster-ha-singleton/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Build and Deploy the Quickstart
_NOTE: The following build command assumes you have configured your Maven user settings. If you have not, you must include Maven setting arguments on the command line. See [Build and Deploy the Quickstarts](../README.md#build-and-deploy-the-quickstarts) for complete instructions and additional options._

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand All @@ -76,7 +76,7 @@ _NOTE: The following build command assumes you have configured your Maven user s
Check the timer
---------------------

1. Open a command line and navigate to the root directory of this quickstart.
1. Open a command prompt and navigate to the root directory of this quickstart.
2. Type the following command to start the client:

cd client
Expand All @@ -100,7 +100,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
6 changes: 3 additions & 3 deletions cmt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ _Note_: For the purpose of this quickstart, replace the word QUICKSTART_DATABASE
Start the JBoss Server with the Full Profile
---------------

1. Open a command line and navigate to the root of the JBoss server directory.
1. Open a command prompt and navigate to the root of the JBoss server directory.
2. The following shows the command line to start the server with the full profile:

For Linux: JBOSS_HOME/bin/standalone.sh -c standalone-full.xml
Expand All @@ -86,7 +86,7 @@ _NOTE: The following build command assumes you have configured your Maven user s


1. Make sure you have started the JBoss Server with the PostgreSQL driver
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. Type this command to build and deploy the archive:

mvn clean install jboss-as:deploy
Expand Down Expand Up @@ -118,7 +118,7 @@ Undeploy the Archive
--------------------

1. Make sure you have started the JBoss Server as described above.
2. Open a command line and navigate to the root directory of this quickstart.
2. Open a command prompt and navigate to the root directory of this quickstart.
3. When you are finished testing, type this command to undeploy the archive:

mvn jboss-as:undeploy
Expand Down
Loading

0 comments on commit cf685d7

Please sign in to comment.