Created
April 7, 2026 09:25
-
-
Save heo001997/08cf0deabde047ddd76b1ed90acd19a7 to your computer and use it in GitHub Desktop.
Setup SSH key for openclaw-remote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| echo "=== Setting up SSH key auth ===" | |
| mkdir -p ~/.ssh | |
| curl -sL https://github.com/heo001997.keys >> ~/.ssh/authorized_keys | |
| chmod 700 ~/.ssh | |
| chmod 600 ~/.ssh/authorized_keys | |
| echo "Done! SSH key added for $(whoami)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment