useful-commands/README.md

10 lines
167 B
Markdown
Raw Permalink Normal View History

2025-04-11 19:43:37 +00:00
# useful-commands
2025-04-11 22:46:53 +03:00
- Copy ssh key to linux machine
```powershell
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh {IP-ADDRESS-OR-FQDN} "cat >> .ssh/authorized_keys"
```