mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-26 15:13:56 +00:00
Fix semantic error in description.
This commit is contained in:
parent
f3f4d310c8
commit
bcd8e675f2
2
bash.md
2
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
|
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
|
# 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.
|
# The `grep` command filters the input with provided patterns.
|
||||||
# That's how we can list .txt files in the current directory:
|
# That's how we can list .txt files in the current directory:
|
||||||
ls -l | grep "\.txt"
|
ls -l | grep "\.txt"
|
||||||
|
Loading…
Reference in New Issue
Block a user