From cc81c1bb36a7da5cf0e3263909d9aa99726df7c2 Mon Sep 17 00:00:00 2001 From: Yigit Colakoglu Date: Wed, 26 May 2021 12:02:58 +0300 Subject: [PATCH] Fixed some spelling errors --- ...rcharge-your-bash-scripts-with-multiprocessing.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/posts/supercharge-your-bash-scripts-with-multiprocessing.md b/content/posts/supercharge-your-bash-scripts-with-multiprocessing.md index 144ca32..43e1a8c 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 = "" tags = ["bash", "scripting", "programming"] keywords = ["bash", "scripting"] -description = "Bash is a great tool for automating tasks and improving you workflow. 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 you work flow. 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 you workflow. However, +Bash is a great tool for automating tasks and improving you work flow. However, it is ***SLOW***. Adding multiprocessing to the scripts you write can improve the performance greatly. @@ -211,12 +211,12 @@ Ok... But that the actual fuck is going in here??? In order to understand what this code is doing, you first need to understand two key commands that we are using, `fifo` and `flock`. Despite their complicated -names, they are actually quite simple. Let's check their manpages to figure out +names, they are actually quite simple. Let's check their man pages to figure out their purposes, shall we? #### man fifo -fifo's manpage tells us that: +fifo's man page tells us that: ``` @@ -244,7 +244,7 @@ to using `flock`. #### man flock -flock's manpage defines it as: +flock's man page defines it as: ``` SYNOPSIS @@ -267,7 +267,7 @@ flock's manpage defines it as: the examples below for how that can be used. ``` -Cool, translated to modern english that us regular folks use, `flock` is a thin +Cool, translated to modern English that us regular folks use, `flock` is a thin wrapper around the C standard function `flock` (see `man 2 flock` if you are interested). It is used to manage locks and has several forms. The one we are interested in is the third one. According to the man page, it uses and open file