From 8114478145604e33905e2706aa0eb4b234da53e9 Mon Sep 17 00:00:00 2001 From: Arthur Casals Date: Sat, 10 Oct 2020 01:07:45 +0200 Subject: [PATCH] Update adding-a-new-ssh-key-to-your-github-account.md Fixes #320 --- .../adding-a-new-ssh-key-to-your-github-account.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md b/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md index 5537a37a8671..92956427aba8 100644 --- a/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md +++ b/content/github/authenticating-to-github/adding-a-new-ssh-key-to-your-github-account.md @@ -87,7 +87,7 @@ After adding a new SSH key to your {% data variables.product.product_name %} acc $ sudo apt-get install xclip # Downloads and installs xclip. If you don't have `apt-get`, you might need to use another installer (like `yum`) - $ xclip -sel clip < ~/.ssh/id_rsa.pub + $ xclip -selection clipboard < ~/.ssh/id_rsa.pub # Copies the contents of the id_rsa.pub file to your clipboard ``` {% tip %}