REDME.md aktualisiert

This commit is contained in:
2026-05-08 16:02:28 +02:00
parent 18ac46cce3
commit aaa907e7af
+11 -1
View File
@@ -4,5 +4,15 @@ This repository serves as a central storage for my public SSH keys. They can be
## curl
```bash
curl -s [https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys](https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys) >> ~/.ssh/authorized_keys
curl -s https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys >> ~/.ssh/authorized_keys
```
## wget
```bash
wget -qO- [https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys](https://git.1337733.xyz/martin/sshconfig/raw/branch/main/authorized_keys) >> ~/.ssh/authorized_keys
```
# Set File Permissions
```bash
chmod 600 ~/.ssh/authorized_keys
```