From 4380d0247965f5db7ac05c25c48891dc0a840937 Mon Sep 17 00:00:00 2001 From: Eraldo Junior Date: Fri, 27 Oct 2023 13:43:43 +0200 Subject: [PATCH] Help: Add example list-file-replicas link #6333 --- bin/rucio | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/rucio b/bin/rucio index 2e53ad9d0d..f4d8f2ad9c 100755 --- a/bin/rucio +++ b/bin/rucio @@ -1950,7 +1950,8 @@ To list the missing replica of a dataset of a given RSE-expression:: list_file_replicas_parser.add_argument(dest='dids', nargs='+', action='store', help='List of space separated data identifiers.') list_file_replicas_parser.add_argument('--pfns', default=False, action='store_true', help='Show only the PFNs.', required=False) list_file_replicas_parser.add_argument('--domain', default=None, action='store', help='Force the networking domain. Available options: wan, lan, all.', required=False) - list_file_replicas_parser.add_argument('--link', dest='link', default=None, action='store', help='Symlink PFNs with directory substitution.', required=False) + list_file_replicas_parser.add_argument('--link', dest='link', default=None, action='store', help='Symlink PFNs with directory substitution.\ + For example: rucio list-file-replicas --rse RSE_TEST --link /eos/:/eos/ scope:datasetname', required=False) list_file_replicas_parser.add_argument('--missing', dest='missing', default=False, action='store_true', help='To list missing replicas at a RSE-Expression. Must be used with --rses option', required=False) list_file_replicas_parser.add_argument('--metalink', dest='metalink', default=False, action='store_true', help='Output available replicas as metalink.', required=False) list_file_replicas_parser.add_argument('--no-resolve-archives', dest='no_resolve_archives', default=False, action='store_true', help='Do not resolve archives which may contain the files.', required=False)