Scp

scp 拒絕做任何事情,除了列印使用

  • June 24, 2021

我正在嘗試使用scp. 但是,每次我執行它時,它只會列印使用說明。

$ scp alex@192.168.0.4:ipdetect-0.6.tar.bz2
usage: scp [-12346BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]
          [-l limit] [-o ssh_option] [-P port] [-S program]
          [[user@]host1:]file1 ... [[user@]host2:]file2

我究竟做錯了什麼?

你忘記了目的地。

scp alex@192.168.0.4:ipdetect-0.6.tar.bz2 .

引用自:https://unix.stackexchange.com/questions/81809