We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad49ce commit 5cfdce1Copy full SHA for 5cfdce1
docs/docs/usage.md
@@ -118,6 +118,18 @@ tasks:
118
119
:::
120
121
+### Reading a Taskfile from stdin
122
+
123
+Taskfile also supports reading from stdin. This is useful if you are generating
124
+Taskfiles dynamically and don't want write them to disk. This works just like
125
+any other program that supports stdin. For example:
126
127
+```shell
128
+task < <(cat ./Taskfile.yml)
129
+# OR
130
+cat ./Taskfile.yml | task
131
+```
132
133
## Environment variables
134
135
### Task
0 commit comments