From: Rishabh Dave Date: Wed, 11 Sep 2019 11:40:53 +0000 (+0530) Subject: cephfs-shell: rewrite help text for put and get commands X-Git-Tag: v15.1.0~1404^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6a7c08b9c441f1033b0f4100033b6dd9ad9894d9;p=ceph.git cephfs-shell: rewrite help text for put and get commands Rewrite, so that the help text is more clear to the user. Signed-off-by: Rishabh Dave --- diff --git a/src/tools/cephfs/cephfs-shell b/src/tools/cephfs/cephfs-shell index 8cb3260c2b52..e4a513ce1b93 100755 --- a/src/tools/cephfs/cephfs-shell +++ b/src/tools/cephfs/cephfs-shell @@ -560,7 +560,7 @@ exists.') @with_argparser(put_parser) def do_put(self, args): """ - Copy a file to Ceph File System from Local Directory. + Copy a local file/directory to CephFS. """ root_src_dir = args.local_path root_dst_dir = args.remote_path @@ -661,7 +661,7 @@ exists.') @with_argparser(get_parser) def do_get(self, args): """ - Copy a file/directory from Ceph File System to Local Directory. + Copy a file/directory from CephFS to given path. """ root_src_dir = args.remote_path root_dst_dir = args.local_path