From ce26db2d52a38ca3e7e1577d69a0f3e924f33bda Mon Sep 17 00:00:00 2001 From: Damian Nowak Date: Sat, 3 Oct 2020 21:16:06 -0500 Subject: [PATCH] server_tuning.rst: escape regexp properly Some shells like zsh will not auto-escape an argument if no match is found on the filesystem. --- admin_manual/installation/server_tuning.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/installation/server_tuning.rst b/admin_manual/installation/server_tuning.rst index f38971e96..ae912086f 100644 --- a/admin_manual/installation/server_tuning.rst +++ b/admin_manual/installation/server_tuning.rst @@ -76,7 +76,7 @@ Here are some examples how to check if your CPU / environment supports the AES-NI extension: * For each CPU core present: ``grep flags /proc/cpuinfo`` or as a summary for - all cores: ``grep -m 1 ^flags /proc/cpuinfo`` If the result contains any + all cores: ``grep -m 1 '^flags' /proc/cpuinfo`` If the result contains any ``aes``, the extension is present. * Search eg. on the Intel web if the processor used supports the extension