diff options
author | rfjakob | 2016-06-09 23:54:11 +0200 |
---|---|---|
committer | rfjakob | 2016-06-09 23:54:11 +0200 |
commit | 0235eb57b35205e3421dc8d0caebfc41e8e80e01 (patch) | |
tree | c0054cea845fdbdd3f12dbcedc60070fbe9815a4 | |
parent | 569a7a277ffe19d96d76990e7163ff39c22f9c51 (diff) |
Updated Upgrading (markdown)
-rw-r--r-- | Upgrading.md | 4 |
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. |