2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-01-26 20:05:14 +00:00
nushell/tests/shell/pipeline/commands
Wind eaedb30a8c
Don't expanding globs if user pass variables. ()
# Description
Fixes: 

# User-Facing Changes
After this change: 
```
let x = '*.nu'; ^echo $x
```
will no longer expand glob.
If users still want to expand glob, there are also 3 ways to do this:
```
# 1. use spread operation with `glob` command
let x = '*.nu'; ^echo ...(glob $x)
```
# Tests + Formatting
Done

# After Submitting
NaN
2024-02-28 23:05:09 +08:00
..
external.rs Don't expanding globs if user pass variables. () 2024-02-28 23:05:09 +08:00
internal.rs Support redirect stderr and stdout+stderr with a pipe () 2024-02-09 01:30:46 +08:00
mod.rs Remove old nushell/merge engine-q 2022-02-07 14:54:06 -05:00