mirror of
https://github.com/nushell/nushell.git
synced 2025-05-01 16:44:27 +02:00
# Description I need a command that will transform hex string into bytes and into other direction. I've implemented `decode hex` command and `encode hex` command. (Based on `encode base64` and `decode base64` commands # User-Facing Changes ``` > '010203' | decode hex 0x[01 02 03] ``` and ``` > 0x[01 02 0a] | encode hex '01020A' ``` --------- Co-authored-by: whiteand <andrewbeletskiy@gmail.com> |
||
---|---|---|
.. | ||
base64.rs | ||
decode_base64.rs | ||
decode_hex.rs | ||
decode.rs | ||
encode_base64.rs | ||
encode_hex.rs | ||
encode.rs | ||
encoding.rs | ||
hex.rs | ||
mod.rs |