I'm running an scp
command in the background:
nohup scp file.gz root@target-host:/root/ > nohup.out 2>&1
I entered the password - I hit ctrl-z
to halt the command and restarted it with bg
, and I can confirm that it's running by executing jobs
. However, is there a way of monitoring the progress of the file transfer (i.e. if I would be running it without placing it in the background)?
Thank you.