- Notifications
You must be signed in to change notification settings - Fork926
Description
Feature request
Add support to for running commands in workspace viacoder ssh workspace [command]
where[command]
is immediately run on the workspace instead of a login shell.
This feature should behave likessh coder.workspace [command]
.
(I'm writing this as a feature request, although I do think itcould classify as a bug/missing core functionality.)
Are there any workarounds?
Yes, usessh
instead ofcoder ssh
.
Notes
There are other limitations tocoder ssh
as well, like not reading standard input, for instance:
❯ coder ssh work <<<'echo hi'inappropriate ioctl for device❯ ssh coder.work <<<'echo hi'hi
I think forcoder ssh
to be the most useful, it should have greater feature parity with plainssh
.