From 8651a9b05b723da02b9c30ce65fbef5629793e99 Mon Sep 17 00:00:00 2001 From: Douglas Jacobsen Date: Thu, 3 Oct 2024 15:29:11 -0600 Subject: [PATCH] Quote escape wildcard in tutorial --- lib/ramble/docs/tutorials/1_hello_world.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/ramble/docs/tutorials/1_hello_world.rst b/lib/ramble/docs/tutorials/1_hello_world.rst index 7b5285145..78953c918 100644 --- a/lib/ramble/docs/tutorials/1_hello_world.rst +++ b/lib/ramble/docs/tutorials/1_hello_world.rst @@ -58,7 +58,7 @@ The ``ramble list`` command also accepts regular expressions. For example: .. code-block:: console - $ ramble list h* + $ ramble list "h*" might output the following: @@ -68,6 +68,10 @@ might output the following: ==> 5 applications hmmer hostname hpcc hpcg hpl +**NOTE**: The quotes around ``h*`` in the previous command avoid a potential +issue where your shell matches files that begin with the later ``h``, can +ramble prints no applications. + Additionally, applications can be filtered by their tags, e.g. .. code-block:: console