This website requires JavaScript.
Explore
Help
Sign In
Mirrors
/
nushell
Watch
2
Star
0
Fork
You've already forked nushell
0
mirror of
https://github.com/nushell/nushell
synced
2025-01-06 18:29:02 +00:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
f5bff8c9c8
nushell
/
crates
/
nu-command
/
tests
/
commands
/
conversions
/
into
/
mod.rs
3 lines
21 B
Rust
Raw
Normal View
History
Unescape
Escape
Preserve attributes on external ByteStreams (#13305) # Description Bug fix: `PipelineData::check_external_failed()` was not preserving the original `type_` and `known_size` attributes of the stream passed in for streams that come from children, so `external-command | into binary` did not work properly and always ended up still being unknown type. # User-Facing Changes The following test case now works as expected: ```nushell > head -c 2 /dev/urandom | into binary # Expected: pretty hex dump of binary # Previous behavior: just raw binary in the terminal ``` # Tests + Formatting Added a test to cover this to `into binary`
2024-07-05 21:10:41 +00:00
mod
binary
;
Fix 9156 endian consistency (#9873) - fixed #9156 # Description I'm trying to fix the problems mentioned in the issue. It's my first attempt in Rust. Please let me know if there are any problems. # User-Facing Changes - The `--little-endian` option dropped, replaced with `--endian`. - Add the `--compact` option to the `into binary` command. - `into int` accepts binary input
2023-08-24 12:08:58 +00:00
mod
int
;
Reference in a new issue
Copy permalink