1= """Examples:
2- rootmv source.root:hist* dest.root
3 Move all histograms whose named starts with 'hist' from 'source.root' to 'dest.root'.
4
5- rootmv source1.root:hist1 source2.root:hist2 dest.root
6 Move histograms 'hist1' from 'source1.root' and 'hist2' from 'source2.root' to 'dest.root'.
7
8- rootmv --recreate source.root:hist dest.root
9 Recreate the destination file 'dest.root' and move the histogram named 'hist' from 'source.root' into it.
10
11- rootmv -c 101 source.root:hist dest.root
12 Change the compression settings of the destination file 'dest.root' to ZLIB algorithm with compression level 1 and move the histogram named 'hist' from 'source.root' into it.
13 Meaning of the '-c' argument is given by 'compress = 100 * algorithm + level'.
14 Other examples of usage:
15 * -c 509 : ZSTD with compression level 9
16 * -c 404 : LZ4 with compression level 4
17 * -c 207 : LZMA with compression level 7
18 For more information see https://root.cern.ch/doc/master/classTFile.html#ad0377adf2f3d88da1a1f77256a140d60
19 and https://root.cern.ch/doc/master/structROOT_1_1RCompressionSetting.html
20
21 """