From 4ba7855699d152d760b0cff6f861c8b35154f328 Mon Sep 17 00:00:00 2001 From: "Adam J. Stewart" Date: Sun, 9 Jul 2023 21:16:16 -0500 Subject: [PATCH] Docs: fix code block (cherry picked from commit 72de1dc2012f249d09eb4994835ef8b92169e4cf) --- doc_src/language.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc_src/language.rst b/doc_src/language.rst index 87427b328..d1b148a0b 100644 --- a/doc_src/language.rst +++ b/doc_src/language.rst @@ -90,7 +90,8 @@ More examples:: searches for lines ending in ``enabled)`` in ``foo.txt`` (the ``$`` is special to ``grep``: it matches the end of the line). :: - apt install "postgres-*" + + apt install "postgres-*" installs all packages with a name starting with "postgres-", instead of looking through the current directory for files named "postgres-something". @@ -264,7 +265,7 @@ Now let's see a few cases:: # Show the "out" on stderr, silence the "err" print >&2 2>/dev/null - + # Silence both print >/dev/null 2>&1