2 个不稳定版本
0.2.0 | 2022年4月23日 |
---|---|
0.1.0 | 2022年4月16日 |
#74 in #jpeg
8KB
102 行
count-files
一个简单的命令行工具,用于按扩展名计数文件。
如何使用
打开终端并运行
count-files /path/to/target_dir
输出示例
Done in 7 seconds.
+-----------+---------+------------+
| File type | Count | Total size |
+==================================+
| jpg | 1322497 | 112.48GiB |
|-----------+---------+------------|
| txt | 372302 | 97.68MiB |
|-----------+---------+------------|
| JPG | 147 | 26.04MiB |
|-----------+---------+------------|
| bmp | 130 | 714.12MiB |
|-----------+---------+------------|
| tar | 9 | 114.88GiB |
+-----------+---------+------------+
安装
如果您已安装 Rust,则可以使用 cargo
cargo install count-files
或者,您可以根据下一节手动构建它,然后将可执行文件复制到 $PATH
目录。
# Install for all users on Ubuntu.
sudo cp target/release/count-files /usr/local/bin
构建
count-files 用 Rust 编写,您需要安装 Rust 以编译它。
要构建
git clone https://github.com/yinguobing/count-files.git
cd count-files
cargo build --release
可执行文件 count-files
可在 target/release
目录中找到。
依赖项
~7–16MB
~189K SLoC