美文网首页程序员
一个简单易用的跨平台命令行16进制查看器

一个简单易用的跨平台命令行16进制查看器

作者: _KevinZhang_ | 来源:发表于2019-01-15 15:08 被阅读31次

    hexyl是一个简单易用的命令行16进制查看器。用不同的颜色区分:空字节、可见的ASCII字符、不可见ASCII字符、其他ASCII字符以及非ASCII字符。

    效果图:

    项目地址:
    https://github.com/rust-lang/cargo/

    安装方式:

    Installation

    On Debian-based systems

    wget "https://github.com/sharkdp/hexyl/releases/download/v0.4.0/hexyl_0.4.0_amd64.deb"
    sudo dpkg -i hexyl_0.4.0_amd64.deb
    

    On Arch Linux

    You can install hexyl from this AUR package:

    yay -S hexyl
    

    On macOS

    brew install hexyl
    

    On FreeBSD

    pkg install hexyl
    

    Via Nix

    nix-env -i hexyl
    

    On other distributions

    Check out the release page for binary builds.

    On Windows

    For now, you will have to install from source via cargo (see below). Make sure that
    you use a terminal that supports ANSI escape sequences (like PowerShell on Windows 10).

    Via cargo

    If you have Rust 1.29 or higher, you can install hexyl from source via cargo:

    cargo install hexyl
    

    已经编译好的:

    https://github.com/sharkdp/hexyl/releases

    相关文章

      网友评论

        本文标题:一个简单易用的跨平台命令行16进制查看器

        本文链接:https://www.haomeiwen.com/subject/sarydqtx.html