docs: correct stdin Taskfile command example (#2738)

This commit is contained in:
Sergio
2026-03-18 13:48:57 -07:00
committed by GitHub
parent c387048f8f
commit 19d8fae5f9

View File

@@ -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: value. You may then pipe into Task as you would any other program:
```shell ```shell
task -t - <(cat ./Taskfile.yml) task -t - < ./Taskfile.yml
# OR # OR
cat ./Taskfile.yml | task -t - cat ./Taskfile.yml | task -t -
``` ```