DEV Community

Kirill Vasiltsov
Kirill Vasiltsov

Posted on • Updated on

Read CLI command output in VSCode

VSCode can read from stdin. You need to use - flag to do it.

[command] --help | code -
Enter fullscreen mode Exit fullscreen mode

Example:

node --help | code -
Enter fullscreen mode Exit fullscreen mode

Top comments (0)