( sequence )
| 77 | ## Removes all the files specified by the sequence. |
| 78 | ## \ingroup python |
| 79 | def rm( sequence ) : |
| 80 | |
| 81 | for f in sequence.fileNames() : |
| 82 | |
| 83 | os.remove( f ) |
| 84 | |
| 85 | ## Concetenates all the files specified by the sequence to stdout |
| 86 | # \todo Allow destination file to be specified |