From 6dc56b82f85d24da0fc57b92118488cc7cfec38e Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Wed, 26 May 2021 12:46:51 +0300 Subject: [PATCH] Fixed typo --- .../supercharge-your-bash-scripts-with-multiprocessing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/supercharge-your-bash-scripts-with-multiprocessing.md b/content/posts/supercharge-your-bash-scripts-with-multiprocessing.md index d10304f..c954223 100644 --- a/content/posts/supercharge-your-bash-scripts-with-multiprocessing.md +++ b/content/posts/supercharge-your-bash-scripts-with-multiprocessing.md @@ -6,12 +6,12 @@ authorTwitter = "theFr1nge" cover = "images/supercharge-your-bash-scripts-with-multiprocessing.png" tags = ["bash", "scripting", "programming"] keywords = ["bash", "scripting"] -description = "Bash is a great tool for automating tasks and improving your work flow. However, it is SLOW. Adding multiprocessing to the scripts you write can improve the performance greatly." +description = "Bash is a great tool for automating tasks and improving your workflow. However, it is SLOW. Adding multiprocessing to the scripts you write can improve the performance greatly." showFullContent = false draft=false +++ -Bash is a great tool for automating tasks and improving your work flow. However, +Bash is a great tool for automating tasks and improving your workflow. However, it is ***SLOW***. Adding multiprocessing to the scripts you write can improve the performance greatly.