mirror of
https://github.com/nushell/nushell
synced 2025-01-04 01:09:05 +00:00
0e023eaa84
# Description This pr is a follow up to #11621, it introduces a `str escape-glob` command as a workaround for the case: ```nushell let f = "a[123]b" ls $f ``` It will glob `a[123]b`, we can get rid of the behavior through `str escape-glob` command: ```nushll let f = "a[123]b" ls ($f | str escape-glob) ``` It's more useful in the `each` context: `ls | get name | str escape-glob | each {|it| ls $it}` # User-Facing Changes NaN # Tests + Formatting Done # After Submitting --------- Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com> |
||
---|---|---|
.. | ||
case | ||
trim | ||
contains.rs | ||
distance.rs | ||
ends_with.rs | ||
escape_glob.rs | ||
expand.rs | ||
index_of.rs | ||
join.rs | ||
length.rs | ||
mod.rs | ||
replace.rs | ||
reverse.rs | ||
starts_with.rs | ||
stats.rs | ||
substring.rs |