summaryrefslogtreecommitdiff
path: root/Upgrading.md
diff options
context:
space:
mode:
Diffstat (limited to 'Upgrading.md')
-rw-r--r--Upgrading.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Upgrading.md b/Upgrading.md
index 4117388..17b6f27 100644
--- a/Upgrading.md
+++ b/Upgrading.md
@@ -22,7 +22,7 @@ I recommend using rsync because it allows to resume interrupted copies and is ge
```
$ shopt -s dotglob
-$ rsync -av /old/* /new
+$ rsync -a --progress /old/* /new
```
The bash option `shopt -s dotglob` makes sure that `/old/*` also matches hidden files (dotfiles). If you don't have any in `/old` (check with `ls -la /old`), you can skip that command.
@@ -35,7 +35,7 @@ As mentioned earlier, double-check that you remember the passphrase for `/new` a
```
$ shopt -s dotglob
-$ rsync -a -P --remove-source-files /old/* /new
+$ rsync -a --progress --remove-source-files /old/* /new
```
As above, `dotglob` makes sure that dotfiles in `/old/` are copied as well.