10 lines
167 B
Markdown
10 lines
167 B
Markdown
# useful-commands
|
|
|
|
- Copy ssh key to linux machine
|
|
|
|
```powershell
|
|
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh {IP-ADDRESS-OR-FQDN} "cat >> .ssh/authorized_keys"
|
|
```
|
|
|
|
|