From 4f14de6be7bcab8bdb1f5d7d3bbd445194d6af7b Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:20:23 +0200 Subject: [PATCH 1/6] Update echo.md --- pages/common/echo.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/echo.md b/pages/common/echo.md index b630b2c0afe4d1..09f8ca4b754f85 100644 --- a/pages/common/echo.md +++ b/pages/common/echo.md @@ -27,3 +27,7 @@ - Print the exit status of the last executed command (Note: In Windows Command Prompt and PowerShell the equivalent commands are `echo %errorlevel%` and `$lastexitcode` respectively): `echo $?` + +Pass text to another program through `stdin`: + +`echo "{{Hello World}}" | {{program}}` From bace88ea8c302fe26d58ebff83b62049ad3b5d62 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:22:32 +0200 Subject: [PATCH 2/6] Update echo.md --- pages/common/echo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/echo.md b/pages/common/echo.md index 09f8ca4b754f85..9dc19357ce81ae 100644 --- a/pages/common/echo.md +++ b/pages/common/echo.md @@ -28,6 +28,6 @@ `echo $?` -Pass text to another program through `stdin`: +- Pass text to another program through `stdin`: `echo "{{Hello World}}" | {{program}}` From 77b80099086a6558cbe26e77534d9afc9dc699cd Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:24:54 +0200 Subject: [PATCH 3/6] Update cat.md --- pages/linux/cat.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/linux/cat.md b/pages/linux/cat.md index a1f9464edb999c..c37c4fd1f0b7a2 100644 --- a/pages/linux/cat.md +++ b/pages/linux/cat.md @@ -26,3 +26,7 @@ - Display non-printable and whitespace characters (with `M-` prefix if non-ASCII): `cat {{[-vte|--show-nonprinting -t -e]}} {{path/to/file}}` + + - Pass file contents to another program through `stdin`: + +`cat "{{Hello World}}" | {{program}}` From 82d1723b55c79b223c793fc0d03fd48568335916 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 4 Nov 2025 15:27:13 +0200 Subject: [PATCH 4/6] Update cat.md --- pages/linux/cat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/cat.md b/pages/linux/cat.md index c37c4fd1f0b7a2..af8a146e5b4f65 100644 --- a/pages/linux/cat.md +++ b/pages/linux/cat.md @@ -27,6 +27,6 @@ `cat {{[-vte|--show-nonprinting -t -e]}} {{path/to/file}}` - - Pass file contents to another program through `stdin`: +- Pass file contents to another program through `stdin`: `cat "{{Hello World}}" | {{program}}` From bcfc970295ccafdba868e6ce629496d65f58c4b0 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Wed, 5 Nov 2025 05:10:06 +0200 Subject: [PATCH 5/6] Update pages/linux/cat.md Co-authored-by: Lena Pastwa <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/cat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/cat.md b/pages/linux/cat.md index af8a146e5b4f65..4b47f09c11c0b0 100644 --- a/pages/linux/cat.md +++ b/pages/linux/cat.md @@ -29,4 +29,4 @@ - Pass file contents to another program through `stdin`: -`cat "{{Hello World}}" | {{program}}` +`cat {{path/to/file}} | {{program}}` From ed41ad268ff2639b7a66cb62c8c8f8ba097165b6 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Thu, 6 Nov 2025 00:52:14 +0200 Subject: [PATCH 6/6] Update cat.md --- pages/linux/cat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/cat.md b/pages/linux/cat.md index 73c4a5b989593b..3079ca382169a4 100644 --- a/pages/linux/cat.md +++ b/pages/linux/cat.md @@ -29,4 +29,4 @@ - Pass file contents to another program through `stdin`: -`cat {{path/to/file}} | {{program}}` \ No newline at end of file +`cat {{path/to/file}} | {{program}}`