#convert-hex #hex #convert #ascii #cli #command-line

app hex2ascii

将十六进制值转换为 ASCII 的命令行应用程序

6 个版本 (3 个稳定版)

使用旧版 Rust 2015

1.0.2 2017 年 5 月 4 日
1.0.1 2017 年 4 月 24 日
0.2.1 2017 年 3 月 23 日
0.1.0 2017 年 3 月 21 日

#15 in #convert-hex

MIT 许可证

4KB
72

hex2ascii

命令行应用程序,用于将十六进制值转换为/从 ASCII 转换。

安装

如果您尚未安装,请安装 rust: https://www.rust-lang.net.cn/

然后使用 cargo 进行安装:

$ cargo install hex2ascii

帮助

$ hex2ascii -h
hex2ascii 0.2.1
Gavyn Riebau
Converts hex values to ascii
USAGE:
    hex2ascii [FLAGS]
FLAGS:
    -h, --help       Prints help information
    -r, --reverse    Converts from ascii to hex rather than the other way around
    -V, --version    Prints version information
    -v, --verbose    Include verbose output including warning messages written to stderr

将消息编码为十六进制

$ echo "Hello world" | hex2ascii -r
48656c6c6f20776f726c64

从十六进制解码消息

$ echo "48656c6c6f20776f726c64" | hex2ascii
Hello world

依赖项

~770KB