Use -g to prevent globbing in some curl examples

This commit is contained in:
Laurence Isla
2024-01-17 12:39:42 -05:00
committed by GitHub
parent cb5d80aff8
commit 9ef0e677e0
+2 -2
View File
@@ -133,13 +133,13 @@ For instance, to avoid repeating the same column for ``or``, use ``any`` to get
.. code-block:: bash
curl "http://localhost:3000/people?last_name=like(any).{O*,P*}"
curl -g "http://localhost:3000/people?last_name=like(any).{O*,P*}"
In a similar way, you can use ``all`` to avoid repeating the same column for ``and``. To get the people with last names that start with O and end with n:
.. code-block:: bash
curl "http://localhost:3000/people?last_name=like(all).{O*,*n}"
curl -g "http://localhost:3000/people?last_name=like(all).{O*,*n}"
.. _pattern_matching: