docs: update README command to make it multiline

This commit is contained in:
2026-02-13 15:19:21 -03:00
parent c9bedbf4eb
commit 21746499fe

View File

@@ -11,7 +11,10 @@ curl -fsSL https://raw.githubusercontent.com/elAgala/server-initializer/main/ind
Or remotely via SSH:
```bash
ssh root@<host> "ADMIN_SSH_KEY='ssh-ed25519 AAAA...' DEPLOY_SSH_KEY='ssh-ed25519 AAAA...' bash -c '\$(curl -fsSL https://raw.githubusercontent.com/elAgala/server-initializer/main/index.sh)' -- <username>"
ssh root@<host> \
"export ADMIN_SSH_KEY='ssh-ed25519 AAAA...' && \
export DEPLOY_SSH_KEY='ssh-ed25519 AAAA...' && \
curl -fsSL https://raw.githubusercontent.com/elAgala/server-initializer/main/index.sh | bash -s -- <username>"
```