SSH public keys for cross-machine access.
# Add all keys to authorized_keys curl -sL https://github.com/ghndrx/pubkeys/raw/main/all.pub >> ~/.ssh/authorized_keys # Or specific machine curl -sL https://github.com/ghndrx/pubkeys/raw/main/keys/dell01.pub >> ~/.ssh/authorized_keys
#!/bin/bash # Install Greg's keys mkdir -p ~/.ssh && chmod 700 ~/.ssh curl -sL https://github.com/ghndrx/pubkeys/raw/main/all.pub >> ~/.ssh/authorized_keys chmod 600 ~/.ssh/authorized_keys echo "✓ Keys installed"