From 9eef446821e8fb38c4f009293f3fffe791f90cb9 Mon Sep 17 00:00:00 2001 From: Michael Scalzetti Date: Thu, 24 Mar 2022 02:48:22 -0400 Subject: [PATCH] switching to cp over mv, using it in verbose recursive mode --- auto_move.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_move.sh b/auto_move.sh index 2591d98..0b71388 100644 --- a/auto_move.sh +++ b/auto_move.sh @@ -3,7 +3,7 @@ USER=$2 7z x $LOC -o./files/temp/$USER/ -mv ./files/temp/$USER/* /home/$USER/ +cp -vR ./files/temp/$USER/* /home/$USER/ echo "Hit ENTER when files finish transferring..."