We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ac6c0 commit 1da67b1Copy full SHA for 1da67b1
1 file changed
README.md
@@ -157,17 +157,17 @@ for i := 0; i < len(s); i++ {
157
### Programs
158
```golang
159
// Programs are called by stating the program name preceded by an @.
160
-@ls("-a")
+@dir("/b")
161
```
162
163
164
// Similar to Bash/Batch, the output can be piped into another program.
165
-@ls("-a") | @sort()
+@dir("/b") | @sort("/r")
166
167
168
169
// To capture the output, just assign the call chain to variables.
170
-stdout, stderr, code := @ls("-a") | @sort()
+stdout, stderr, code := @dir("/b") | @sort("/r")
171
172
173
### Imports
0 commit comments