Answers:
我认为这可能是正确的方法,因此您仍在使用SSH,但我还没有找到使用scp的方法-但是在ssh上使用rsync可能会解决它。
rsync -e 'ssh -ax' -av --exclude /a/c myserver:/a .
如果您使用-n开关,那么它将创建该过程的空运行:
rsync -e 'ssh -ax' -av --exclude /a/c -n myserver:/a .
-rz
:-e "ssh -i private.pem" -rz 'users@server:/full/path/'
。