From bf196aa6846d05f462ddd5bf05db418dc1f62ab0 Mon Sep 17 00:00:00 2001
From: Branislav Jansik <branislav.jansik@vsb.cz>
Date: Mon, 31 Jul 2023 15:23:46 +0200
Subject: [PATCH] Update shell-and-data-access.md

---
 docs.it4i/general/shell-and-data-access.md | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/docs.it4i/general/shell-and-data-access.md b/docs.it4i/general/shell-and-data-access.md
index cbacf738f..35867df6d 100644
--- a/docs.it4i/general/shell-and-data-access.md
+++ b/docs.it4i/general/shell-and-data-access.md
@@ -176,11 +176,10 @@ Then run the rsync in parallel:
 
 ```console
 local $ cd my-local-dir
-local $ ls | xargs -I% -n 2 -P 4 rsync % username@cluster-name.it4i.cz:my-remote-dir/.
+local $ ls | xargs -I% -n 1 -P 4 rsync % username@cluster-name.it4i.cz:my-remote-dir/.
 ```
 
-The -n XXX argument determines how many files will be transfered per single rsync process. The -P YYY argument
-determines number of parallel rsync processes. Set to number of cores on your local machine.
+The -P YYY argument determines number of parallel rsync processes. Set to number of cores on your local machine.
 
 On Windows, use the [WinSCP client][c] to transfer data. The [win-sshfs client][d] provides a way to mount the cluster filesystems directly as an external disc.
 
-- 
GitLab