Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat]: allow code cli to read from stdin as the vscode one #5693

Closed
felipecrs opened this issue Oct 24, 2022 · 7 comments
Closed

[Feat]: allow code cli to read from stdin as the vscode one #5693

felipecrs opened this issue Oct 24, 2022 · 7 comments
Labels
enhancement Some improvement that isn't a feature

Comments

@felipecrs
Copy link

What is your suggestion?

The code cli which comes with the VS Code's own server implementation (like Remote - WSL or Remote - Containers) allows the following:

echo 'text from stdout' | code -
Code_H4dwcVrXAz.mp4

code-server's code cli fails with:

$ echo 'text from stdout' | code -
[2022-10-24T15:13:30.253Z] error Unknown option -

Why do you want this feature?

It's very useful so I can use the editor to analyze output of long-running commands like docker logs -f.

Are there any workarounds to get this functionality today?

I tried but I did not find any.

Are you interested in submitting a PR for this?

No plans.

@felipecrs felipecrs added the enhancement Some improvement that isn't a feature label Oct 24, 2022
@jsjoeio jsjoeio added this to the Backlog Candidates milestone Oct 24, 2022
@code-asher
Copy link
Member

code-asher commented Feb 17, 2023

Ah I think the name is code-server in our case. I tested echo 'text from stdout' | code-server - (in the integrated terminal) and it seems to work.

@felipecrs
Copy link
Author

Interesting. So, why there are two CLIs then?

@code-asher
Copy link
Member

code-asher commented Feb 27, 2023 via email

@felipecrs
Copy link
Author

Ops, actually it's just a symlink to code-server:

ln -s /usr/local/lib/code-server/bin/code-server /usr/local/bin/code

This is done by the image I'm using.

And, that's very weird, see:

echo hi | code-server -
Reading from stdin via: /tmp/code-stdin-U2j
^Cecho hi | code -
[2023-02-28T00:10:43.853Z] error Unknown option -

code-server indeed works but just code doesn't. I can't imagine why that's the case, so I decided to instead of using a symlink, to use a shim instead:

#!/bin/sh

exec code-server "${@}"

And now it works.

@felipecrs felipecrs closed this as not planned Won't fix, can't repro, duplicate, stale Feb 28, 2023
@felipecrs
Copy link
Author

Maybe there is something wrong with the code-server CLI which makes it does not work if called from a symlink named just code, but I think the workaround is pretty acceptable.

@code-asher
Copy link
Member

code-asher commented Mar 3, 2023 via email

@code-asher
Copy link
Member

code-asher commented Mar 3, 2023

Here it is: #5414, the issue name mentions external terminals but it would fix this as well going to rename it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Some improvement that isn't a feature
Projects
None yet
Development

No branches or pull requests

3 participants