mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-22 18:19:36 +01:00
docs: improve cross-platform clipboard support for key copying
- Add instructions to install `xclip` on Ubuntu before copying the private key - Replace `clip` command with platform-specific commands (`pbcopy` for macOS and `xclip` for Ubuntu) for copying the private key Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
5ade826485
commit
28428a13f5
1 changed files with 17 additions and 2 deletions
19
README.md
19
README.md
|
@ -122,14 +122,29 @@ Copy Private Key content and paste in Github Secrets.
|
||||||
|
|
||||||
### Copy rsa Private key
|
### Copy rsa Private key
|
||||||
|
|
||||||
|
Before copying the private key, install `clip` command as shown below:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
clip < ~/.ssh/id_rsa
|
# Ubuntu
|
||||||
|
sudo apt-get install xclip
|
||||||
|
```
|
||||||
|
|
||||||
|
copy the private key:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# macOS
|
||||||
|
pbcopy < ~/.ssh/id_rsa
|
||||||
|
# Ubuntu
|
||||||
|
xclip < ~/.ssh/id_rsa
|
||||||
```
|
```
|
||||||
|
|
||||||
### Copy ed25519 Private key
|
### Copy ed25519 Private key
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
clip < ~/.ssh/id_ed25519
|
# macOS
|
||||||
|
pbcopy < ~/.ssh/id_ed25519
|
||||||
|
# Ubuntu
|
||||||
|
xclip < ~/.ssh/id_ed25519
|
||||||
```
|
```
|
||||||
|
|
||||||
See the detail information about [SSH login without password](http://www.linuxproblem.org/art_9.html).
|
See the detail information about [SSH login without password](http://www.linuxproblem.org/art_9.html).
|
||||||
|
|
Loading…
Reference in a new issue