gpt4 book ai didi

linux - 在后台运行 SCP 并监控进度

转载 作者:IT王子 更新时间:2023-10-29 01:12:10 27 4
gpt4 key购买 nike

我在后台运行一个 scp 命令:

 nohup scp file.gz root@target-host:/root/ > nohup.out 2>&1

我输入了密码 - 我按 ctrl-z 停止命令并用 bg 重新启动它,我可以通过执行 jobs 确认它正在运行。但是,有没有一种方法可以监控文件传输的进度(即,如果我在不将其置于后台的情况下运行它)?

谢谢。

最佳答案

nohup scp <file_name> user@<IP_Address>:<path>
nohup: ignoring input and appending output to 'nohup.out'
user@IP_address's password:
Ctrl+z
bg
disown -h %1

bg -> 将作业发送到后台。

disown -h %1 -> 即使您退出系统,它也会运行

关于linux - 在后台运行 SCP 并监控进度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13147861/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com