7 个不稳定版本 (3 个重大变更)

0.4.2 2024年5月30日
0.4.1 2024年5月24日
0.3.0 2024年5月17日
0.2.1 2024年5月16日
0.1.0 2024年5月16日

#730 in 命令行实用工具

MIT 许可证

13KB
243 代码行

命令快捷方式工具

命令快捷方式工具是一个使用Rust编写的命令行界面(CLI)工具,它允许用户轻松地定义和执行自定义命令。

功能

  • 添加命令:动态添加具有自定义别名和关联命令的新命令。
  • 列出命令:查看所有可用命令及其别名和关联命令的列表。
  • 执行命令:通过指定别名来执行预定义的命令。

安装

```bash
cargo install prkcst
```

用法

添加命令

要添加新命令,使用 CLI 工具并运行 --add 选项

./prkcst --add

Enter the alias for your command:
hello

Enter the commands associated with this alias (one command per line)\n Enter an empty line to finish

echo hello world

同样,您也可以为命令添加参数

./prkcst --add

Enter the alias for your command:
hello_user

Enter the commands associated with this alias (one command per line)\n Enter an empty line to finish

echo hello {}

按照提示输入新命令的别名和关联命令。使用 "{}" 作为参数占位符。

列出命令

要列出所有可用命令,使用 CLI 工具并运行 --list 选项

./prkcst --list

执行命令

要执行预定义的命令,指定其别名以及所需的任何参数

./prkcst <alias> [args]

<alias> 替换为命令的别名,将 [args] 替换为命令所需的任何参数。

许可证

本项目采用 MIT 许可证

依赖项

~0.7–1.6MB
~35K SLoC