老男孩教育每日一题-124天:当我们使用ssh-keygen命令的时候,如何一键非交互生产密钥对呢?

当我们使用ssh-keygen命令的时候,需要输入3次回车,才能创建密钥对,如何一键非交互生产密钥对呢?

答案:

方法一:

ssh-keygen -f ~/.ssh/id_rsa -q -N ''

方法二:

ssh-keygen -t rsa -f ~/.ssh/id_dsa -P ""
当然还可以写一个expect脚本来实现,比较麻烦就不推荐了

备注

今天是每日一题陪伴大家的第124天期待你的进步

对于题目和答案的任何疑问,请在博客评论区留言
往期题目索引

http://lidao.blog.51cto.com/3388056/1914205


本文转自 李导 51CTO博客,原文链接:http://blog.51cto.com/lidao/1961518

上一篇:Scalaz(4)- typeclass:标准类型-Equal,Order,Show,Enum


下一篇:Scalaz(9)- typeclass:checking instance abiding the laws