From b045303f0cf3b83222058ab0fb1875b4eeba0437 Mon Sep 17 00:00:00 2001 From: Mahyar Mirrashed Date: Fri, 18 Apr 2025 16:25:38 -0700 Subject: [PATCH] refactor: put command onto single line --- docs/03-compute-resources.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/03-compute-resources.md b/docs/03-compute-resources.md index 3918244..c4caae9 100644 --- a/docs/03-compute-resources.md +++ b/docs/03-compute-resources.md @@ -214,8 +214,7 @@ Copy the `hosts` file to each machine and append the contents to `/etc/hosts`: ```bash while read IP FQDN HOST SUBNET; do scp hosts root@${HOST}:~/ - ssh -n \ - root@${HOST} "cat hosts >> /etc/hosts" + ssh -n root@${HOST} "cat hosts >> /etc/hosts" done < machines.txt ```