From bcd8e675f2d72b22fb73686258b0e0f735eb1314 Mon Sep 17 00:00:00 2001 From: Alexander Ryabishkin <86356347+wugdance@users.noreply.github.com> Date: Fri, 14 Mar 2025 15:23:27 +0300 Subject: [PATCH] Fix semantic error in description. --- bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash.md b/bash.md index 50680abb..4a860fd1 100644 --- a/bash.md +++ b/bash.md @@ -231,7 +231,7 @@ ls -t # Sorts the directory contents by last-modified date (descending) ls -R # Recursively `ls` this directory and all of its subdirectories # Results (stdout) of the previous command can be passed as input (stdin) to the next command -# using a pipe |. Commands chained in this way are called a "pipeline", and are run concurrently. +# using a pipe |. Commands chained in this way are called a "pipeline", and are run sequentially. # The `grep` command filters the input with provided patterns. # That's how we can list .txt files in the current directory: ls -l | grep "\.txt"