Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.

Latest commit

 

History

History
21 lines (15 loc) · 481 Bytes

File metadata and controls

21 lines (15 loc) · 481 Bytes

Remote terminal

You can access the shell of your Coder workspace from your local computer using the coder ssh command.

Usage

coder ssh <workspace name> [<command [args...]>]

This executes a remote command on the workspace; if no command is specified, the CLI opens up the workspace's default shell.

For example, you can print "Hello World" in your Coder workspace shell as follows:

$ coder ssh my-workspace echo "hello world"
hello world