We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How to call other command line tools in the shell? Similar to execSync.
For example, I want to perform some git operations.
Does this mean I need a pure wasm git client?
The text was updated successfully, but these errors were encountered:
At this time, there is no way to do this within wasi-cli. Someone would need to make a proposal for an addition to the API.
Sorry, something went wrong.
It should be possible to add such an interface:
@since(version = 0.3.0) interface exec { @since(version = 0.3.0) @unstable(feature = cli-child-process) exec: func(command: string) -> result; @since(version = 0.3.0) @unstable(feature = cli-child-process) record exec-options { } @since(version = 0.3.0) @unstable(feature = cli-child-process) exec-with-options: func(command: string, options: exec-options) -> result; }
I'm not familiar with cross-platform, what options are common to all platforms?
No branches or pull requests
How to call other command line tools in the shell? Similar to execSync.
For example, I want to perform some git operations.
Does this mean I need a pure wasm git client?
The text was updated successfully, but these errors were encountered: