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
The same as arc_command, but for shell.
I did this very easily via an extension trait, but it should be available out-of-the-box imo considering arc_command and arc_raw_command are there:
trait ArcShellExt { fn arc_shell<S: AsRef<str>>(self: Arc<Self>, command: S) -> OwningCommand<Arc<Self>>; } impl ArcShellExt for Session { fn arc_shell<S: AsRef<str>>(self: Arc<Self>, command: S) -> OwningCommand<Arc<Self>> { let mut cmd = self.arc_command("sh"); cmd.arg("-c").arg(command.as_ref()); cmd } }
The text was updated successfully, but these errors were encountered:
That's neat!
I would welcome PR/contribution for that API!
Sorry, something went wrong.
No branches or pull requests
The same as arc_command, but for shell.
I did this very easily via an extension trait, but it should be available out-of-the-box imo considering arc_command and arc_raw_command are there:
The text was updated successfully, but these errors were encountered: