From 0235eb57b35205e3421dc8d0caebfc41e8e80e01 Mon Sep 17 00:00:00 2001 From: rfjakob Date: Thu, 9 Jun 2016 23:54:11 +0200 Subject: Updated Upgrading (markdown) --- Upgrading.md | 4 ++-- 1 file 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. -- cgit v1.2.3