()
| 2597 | } |
| 2598 | |
| 2599 | func ExamplePipe_Tee_stdout() { |
| 2600 | s, err := script.Echo("hello\n").Tee().String() |
| 2601 | if err != nil { |
| 2602 | panic(err) |
| 2603 | } |
| 2604 | fmt.Println(s) |
| 2605 | // Output: |
| 2606 | // hello |
| 2607 | // hello |
| 2608 | } |
| 2609 | |
| 2610 | func ExamplePipe_Tee_writers() { |
| 2611 | buf1, buf2 := new(bytes.Buffer), new(bytes.Buffer) |