From 7d4f728a4f764e49fa8e2d2d4f36ac352fa4e7c0 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sun, 9 Jun 2024 14:57:41 +0200 Subject: [PATCH] Update 2024-6-10-how-we-decreased-bash-script-execution-by-16x-for-openpanel.md --- ...w-we-decreased-bash-script-execution-by-16x-for-openpanel.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/blog/2024-6-10-how-we-decreased-bash-script-execution-by-16x-for-openpanel.md b/documentation/blog/2024-6-10-how-we-decreased-bash-script-execution-by-16x-for-openpanel.md index 4c261306..b3feded4 100644 --- a/documentation/blog/2024-6-10-how-we-decreased-bash-script-execution-by-16x-for-openpanel.md +++ b/documentation/blog/2024-6-10-how-we-decreased-bash-script-execution-by-16x-for-openpanel.md @@ -181,7 +181,7 @@ storage_file=$(echo "$cpu_ram_info" | awk '{print $9}' | sed 's/ //;s/B//') plan_id=$(echo "$cpu_ram_info" | awk '{print $11}') ``` -This ends being 6 echo statements of the same thing! To avoid that, we can use [read](https://linuxcommand.org/lc3_man_pages/readh.html) to assign the values from the database results: +This ends being 6 echo statements! To avoid it, we can use [read](https://linuxcommand.org/lc3_man_pages/readh.html) to assign the values from the database results: