We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac3541f commit 04778e9Copy full SHA for 04778e9
content/posts/2024-07-30-fish-and-pipestatus.md
@@ -71,9 +71,10 @@ prior value.
71
## Piping commands
72
73
When shell scripting, it is common to pipe commands. What we mean by piping commands is
74
-running a command and piping its output as the input to another command, and so on.
75
-Let's take a quick example in Fish where we print the URL to this blog post and pipe
76
-that to `string match` to pull out the slug name:
+running a command and sending its output as the input to another command, and so on.
+This is done with the pipe `|` character, hence the term. Let's take a quick example in
+Fish where we print the URL to this blog post and pipe that to `string match` to pull
77
+out the slug name:
78
79
```fish
80
> echo "https://mattmc3.github.io/posts/2024/07/fish-and-pipestatus/" |
0 commit comments