6

ssh-copy-idを自分のMacで動作させるために、 http: //www.devthought.com/2009/09/19/get-ssh-copy-id-in-mac-os-x/の指示に従いました。 。実行中にエラーが発生します:ssh-copy-id

/usr/bin/ssh-copy-id: line 1: ucgi:: command not found
stat: script:: stat: No such file or directory
stat: No: stat: No such file or directory
stat: such: stat: No such file or directory
stat: file: stat: No such file or directory
stat: or: stat: No such file or directory
stat: directory: stat: No such file or directory

https://github.com/beautifulcode/ssh-copy-id-for-OSXの手順に従おうとしましたが、実行するたびにssh-copy-id同じエラーが発生します。どうすれば自分の状況を修正してssh-copy-id適切に機能させることができますか?

4

3 に答える 3

16

私見ですが、Mac を使用している場合の最も簡単な方法は、brew を使用することです。

brew install ssh-copy-id
于 2013-12-18T10:54:31.770 に答える
12

以下のコマンドを使用します

sudo curl https://raw.githubusercontent.com/beautifulcode/ssh-copy-id-for-OSX/master/ssh-copy-id.sh -o /usr/local/bin/ssh-copy-id
sudo chmod +x /usr/bin/ssh-copy-id
于 2013-03-03T12:25:57.127 に答える
2

最初のリンクで参照されているリポジトリは壊れています。

この方法でインストールしてみてください:

sudo curl https://raw.github.com/beautifulcode/ssh-copy-id-for-OSX/master/ssh-copy-id.sh -o /usr/local/bin/ssh-copy-id
sudo chmod +x /usr/local/bin/ssh-copy-id
于 2013-03-03T12:25:06.660 に答える