1 个不稳定版本

0.2.0 2021年8月6日

#709Unix API

GPL-3.0-or-later

17KB
124 代码行

使用Rust重制的UNIX风格cat,主要适用于Windows和其他没有cat的环境中。这并不是完整的cat实现,我在此是为了学习Rust,并可能在不久的将来添加所有功能。

这需要Rust工具链,主要是cargo

构建和运行

克隆项目然后运行

   $ cd cat && cargo install --path .  

或者您可以这样做

    $ cargo install --git https://github.com/Blaze2305/cat

这会为您的架构构建二进制文件,并将其存储在~/.cargo中,以便您可以在整个系统中使用它。

用法

    cat [FLAGS] [FILES]...
    FLAGS:
	    - -h, --help               Prints help information
	    - -n, --num                print the line number for each file
	    - -b, --number-nonblank    number non empty output lines, overrides -n
	    - -E, --show-ends          Show $ at the end of each line
	    - -t, --show-tabs          sdiaply TAB characters as ^I
	    - -s, --squeeze-blank      suppress repeated empty output lines
	    - -V, --version            Prints version information
    
    ARGS:
       - <FILES>...    List of files to cat

依赖关系

~2–9.5MB
~79K SLoC