From 9ef0e677e07b38bca065fa358dfa09f58c2df27c Mon Sep 17 00:00:00 2001 From: Laurence Isla Date: Wed, 17 Jan 2024 12:39:42 -0500 Subject: [PATCH] Use `-g` to prevent globbing in some curl examples --- docs/references/api/tables_views.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/references/api/tables_views.rst b/docs/references/api/tables_views.rst index 6d20abfbc..0c1c2ca70 100644 --- a/docs/references/api/tables_views.rst +++ b/docs/references/api/tables_views.rst @@ -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: