()
| 2563 | } |
| 2564 | |
| 2565 | func ExamplePipe_Slice() { |
| 2566 | s, err := script.Echo("a\nb\nc\n").Slice() |
| 2567 | if err != nil { |
| 2568 | panic(err) |
| 2569 | } |
| 2570 | fmt.Println(s) |
| 2571 | // Output: |
| 2572 | // [a b c] |
| 2573 | } |
| 2574 | |
| 2575 | func ExamplePipe_Stdout() { |
| 2576 | n, err := script.Echo("a\nb\nc\n").Stdout() |