Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须从 id_rsa.pub 复制 GitHub 的 SSH 密钥。我可以使用什么剪贴板实用程序,以及复制到剪贴板的命令行是什么。完成了,如何从剪贴板复制到文本文件或任何地方。请指教。
如果您正在运行 X Window 系统,则可以使用该xclip实用程序。
xclip
安装:sudo apt-get install xclip
sudo apt-get install xclip
复印:xclip id_rsa.pub
xclip id_rsa.pub
复制到剪贴板:xclip -o | xclip -sel clip
xclip -o | xclip -sel clip
粘贴:xclip -o -sel clip > file.txt
xclip -o -sel clip > file.txt
阅读源代码中的 README 文件,xclip了解如何使用它的更多信息。