nushell/crates/nu-command/src/env
Jelle Besseling 4ca47258a0
Add --redirect-combine option to run-external (#8918)
# Description

Add option that combines both output streams to the `run-external`
command.

This allows you to do something like this:

```nushell
let res = do -i { run-external --redirect-combine <command that prints to stdout and stderr> } | complete

if $res.exit_code != 0 {
  # Only print output when command has failed.
  print "The command has failed, these are the logs:"
  print $res.stdout
}
```

# User-Facing Changes

No breaking changes, just an extra option.

# Tests + Formatting

Added a test that checks the new option

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->

Co-authored-by: Jelle Besseling <jelle@bigbridge.nl>
2023-04-28 07:55:48 -05:00
..
config Add --redirect-combine option to run-external (#8918) 2023-04-28 07:55:48 -05:00
export_env.rs Use imported names in Command::run signatures (#7967) 2023-02-05 22:17:46 +01:00
let_env.rs Add $env.CURRENT_FILE variable (#8861) 2023-04-13 23:33:29 +03:00
load_env.rs allow records to have type annotations (#8914) 2023-04-26 08:16:55 -05:00
mod.rs Remove the 'env' command, as we have the variable (#8185) 2023-03-01 21:20:00 +13:00
source_env.rs Add $env.CURRENT_FILE variable (#8861) 2023-04-13 23:33:29 +03:00
with_env.rs Document and critically review ShellError variants - Ep. 3 (#8340) 2023-03-06 18:33:09 +01:00