commit d0dd94532802ad5b8ab00d4c378fe64359f4e3a1
parent 09f63c870ae3cf22bb3946ad89944a3d96f65032
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Thu, 23 Dec 2021 01:19:22 -0500
Use wget(1) in examples more
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/taler-merchant-manual.rst b/taler-merchant-manual.rst
@@ -830,7 +830,7 @@ If everything worked as expected, the command
.. code-block:: console
- $ curl http://localhost:8888/config
+ $ wget -O - http://localhost:8888/config
should return some basic configuration status data about the service.
@@ -853,7 +853,7 @@ Instance setup
First of all, we recommend the use of the single-page administration
application that is served by default at the base URL of the merchant backend.
You can use it to perform all steps described in this section (and more!),
-using a simple Web interface instead of the ``curl`` commands given below.
+using a simple Web interface instead of the ``wget`` commands given below.
The first step for using the backend involves the creation of a ``default``
instance. The ``default`` instance can also create / delete / configure other
@@ -1731,5 +1731,5 @@ request to the merchant, for example:
.. code-block:: console
- $ curl http://$(docker-machine ip)/
+ $ wget -O - http://$(docker-machine ip)/
# A greeting message should be returned by the merchant.