composeCleanFiles builds the command removing every object under the given `bucket[/prefix]` path
(path string)
| 703 | // composeCleanFiles builds the command removing every object under the given |
| 704 | // `bucket[/prefix]` path |
| 705 | func composeCleanFiles(path string) string { |
| 706 | return fmt.Sprintf(`sh -c 'aws s3 rm --recursive "s3://%v"'`, path) |
| 707 | } |
| 708 | |
| 709 | // composeFindCmd builds the command counting the objects matching a given path |
| 710 | func composeFindCmd(path string) string { |