()
| 2234 | } |
| 2235 | |
| 2236 | func ExampleIfExists_true() { |
| 2237 | script.IfExists("./testdata/hello.txt").Echo("found it").Stdout() |
| 2238 | // Output: |
| 2239 | // found it |
| 2240 | } |
| 2241 | |
| 2242 | func ExampleIfExists_false() { |
| 2243 | script.IfExists("doesntexist").Echo("found it").Stdout() |