Hello world

One of the most basic commands developers use is echo to print output to their terminal.

echo "Hello, world"

We can run the same command on a machine in the cloud by prefixing coiled run to our original echo command.

coiled run echo "Hello, world"

We can also make use of Coiled Run CLI options to specify things like VM instance types, computing region, etc. For example, here we print Hello, world on a m6i.2xlarge VM instance in region us-west-2.

coiled run --region us-west-2 --vm-type "m6i.2xlarge" echo "Hello, world"
Running Coiled Run hello world example in a terminal