SCP 无法识别来自 .ssh/config 的配置

SCP does not recognize configuration from .ssh/config

我已配置文件 .ssh/config 以简化连接:

Host MyHost
    HostName     my.univ.edu
    User         me
    Port         22

Host cluster
    HostName     thecluster
    User         me
    ProxyJump    MyHost

当我执行 ssh cluster 时一切正常。但是,scp 命令不起作用:

$ scp cluster:/path/to/my/file .
zsh: no matches found: cluster:/path/to/my/file

知道为什么吗?

zsh 似乎在这里进行文件通配,你能做吗:

scp "cluster:/path/to/my/file" .