= R"(
Remove objects from ROOT files
positional arguments:
FILE:path File(s) and path of objects to remove
options:
-f, --force ignore nonexistent files and arguments, never prompt
-h, --help show this help message and exit
-i, --interactive prompt before deleting each object
-n, --dry-run show what would be removed, but don't actually remove anything. Implies `-v`.
-r, --recursive recurse inside directories
-v, --verbose be verbose (can be repeated for increased verbosity)
examples:
- rootrm example.root:hist
Remove the object 'hist' from the ROOT file 'example.root'
- rootrm example.root:dir/hist
Remove the object 'hist' from the directory 'dir' inside the ROOT file 'example.root'
- rootrm example.root
Remove the ROOT file 'example.root'
- rootrm -i example.root:hist
Display a confirmation request before deleting: 'remove 'hist' from 'example.root' ? (y/n) :'
)"