1. 終端: cd ~/ ;
2. 生成 ssh key
ssh-keygen -t rsa -c [email protected]
3. 回車後提示輸入密碼,此處密碼可以不填,直接回車
4. 提示再次輸入密碼,直接回車,當出現以下圖案,則表示生成成功。
5. 前往以下目錄找到生成好的 ssh key
/users/czz/.ssh/id_rsa.pub
6. 開啟電腦終端,輸入已下命令:
ls -al ~/.ssh
出現兩種情況:
(1) 終端出現檔案id_rsa.pub 或 id_dsa.pub,則表示該電腦已經存在ssh key,此時可繼續輸入命令:
//將公鑰放到剪下板
pbcopy < ~/.ssh/id_rsa.pub
這樣你需要的ssh key 就已經複製到貼上板上了. 直接到github keys 中貼上即可。
Golang中生成隨機字串並複製到貼上板的方法
前段時間在生活中偶爾需要對某些檔案進行重新命名,而且是隨機名字,剛 開始是手動重新命名然後在鍵盤上胡亂打一些字母數字,時間長了發現也挺麻煩的,於是想到能不能用golang實現這個功能並且自動把生成的字串 複製到貼上板,然後生成exe檔案,要用的是直接滑鼠雙擊就行。說幹就幹。網上搜了些相關資料,於是寫...
distcp 複製到同路徑下 複製到不同路徑下
複製到同路徑下 a b c a b c distcp pt hdfs a b c 2021 02 01 hdfs a b c 1900 01 01 結果是 hdfs a b c 1900 01 01 2021 02 01 2 這才是對的,直接複製檔案過來。distcp pt hdfs a b c 2...
Array 複製到ArrayList中
string array new string arraylist list new arraylist 一 使用for迴圈,將array陣列中的資料逐步加入到arraylist的物件中 1 for迴圈 for int i 0 i array.length i 二 使用arraylist 的copy...