doc: drop shebang lines in .pow files

For now, Kapow! treats .pow files as shell scripts, not executables.
See https://github.com/BBVA/kapow/issues/62
This commit is contained in:
pancho horrillo
2020-06-11 20:04:11 +02:00
parent 77b358e3c8
commit a311da0d87
@@ -84,8 +84,6 @@ whole thing documented in one html file, served with *Kapow!*.
:linenos:
$ cat index.pow
#!/usr/bin/env bash
kapow route add / - <<-'EOF'
cat howto.html | kapow set /response/body
EOF
@@ -112,8 +110,6 @@ leverage ``set -x`` the same way as with `pow` files.
.. code-block:: console
$ cat withdebug.pow
#!/usr/bin/env bash
kapow route add / - <<-'EOF'
set -x
echo "This will be seen in the log"