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.