Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
14
rated 0 times [  14] [ 0]  / answers: 1 / hits: 80717  / 2 Years ago, fri, january 28, 2022, 3:41:59

I'm running 'rsync -a -i /foo /bar'. Every now and then I would like to know what exactly rsync is doing at the moment without having the -v output all the time. Is it possible to increase the verbosity of running processes e.g. by sending a kill signal?


More From » rsync

 Answers
0

I would redirect the output in a file and then tail -f to see the output when desired:



rsync -a /foo /bar >/tmp/rsync.log 2>&1


when needed:



tail -f /tmp/rsync.log

[#40744] Friday, January 28, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
dicatandyca

Total Points: 486
Total Questions: 108
Total Answers: 121

Location: Greenland
Member since Wed, Jan 18, 2023
1 Year ago
;