()
| 210 | } |
| 211 | |
| 212 | func ExamplePipe_Exec() { |
| 213 | script.Echo("Hello, world!").Exec("tr a-z A-Z").Stdout() |
| 214 | // Output: |
| 215 | // HELLO, WORLD! |
| 216 | } |
| 217 | |
| 218 | func ExamplePipe_ExecForEach() { |
| 219 | script.Echo("a\nb\nc\n").ExecForEach("echo {{.}}").Stdout() |