如果我从它运行的地方关闭 shell,aws s3 同步会停止吗

Will aws s3 sync stops if I close down the shell from where it runs

问题:如果我关闭我的 CLI window - 即没有向命令发送 ctrl-c - 同步过程会停止吗?

对我来说,aws s3 sync指令已经被aws接收到,所以应该不会有什么危害...

因此,对于每个其他人 运行 同样的问题,回答是:是的,如果 shell window 关闭,该过程确实结束。

为什么?由于该命令为每个要同步的对象发出 GET 和 PUT,因此,当 shell 被终止时,活动命令也会被终止。

HTH.