From 19d8fae5f95a623f598362c07603bd4bcaf00526 Mon Sep 17 00:00:00 2001 From: Sergio Date: Wed, 18 Mar 2026 13:48:57 -0700 Subject: [PATCH] docs: correct stdin Taskfile command example (#2738) --- website/src/docs/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/docs/guide.md b/website/src/docs/guide.md index 6c3eb912..2ae94e09 100644 --- a/website/src/docs/guide.md +++ b/website/src/docs/guide.md @@ -99,7 +99,7 @@ from stdin, you must specify the `-t/--taskfile` flag with the special `-` value. You may then pipe into Task as you would any other program: ```shell -task -t - <(cat ./Taskfile.yml) +task -t - < ./Taskfile.yml # OR cat ./Taskfile.yml | task -t - ```