()
| 77 | } |
| 78 | |
| 79 | func (e example) command() string { |
| 80 | s := fmt.Sprintf(`rclone convmv %q`, e.path) |
| 81 | for _, f := range e.flags { |
| 82 | s += fmt.Sprintf(" --name-transform %q", f) |
| 83 | } |
| 84 | return s |
| 85 | } |
| 86 | |
| 87 | func (e example) output() string { |
| 88 | ctx := context.Background() |