6 个版本 (有破坏性)
0.6.0 | 2024年1月28日 |
---|---|
0.5.0 | 2024年1月15日 |
0.4.0 | 2024年1月13日 |
0.3.0 | 2023年12月3日 |
0.1.0 | 2023年11月26日 |
#1188 在 命令行工具 中
每月 69 次下载
9KB
155 代码行
uribo
一个命令行工具,用于执行在 $PWD/(..)*/.uribo
文件中定义的 shell 命令。
// Define and run the "hello" command.
$ uribo run hello
"hello" command is not defined
$ uribo put hello -- echo "Hello World!"
$ cat .uribo
{
"hello": {
"command": "echo",
"args": [
"Hello World!"
]
}
}
$ uribo run hello
Hello World!
// If the specified command is not found in the $PWD/.uribo file,
// the parent directories will be searched.
$ echo '{"ver": {"command": "uribo", "args": ["--version"]}}' > ../.uribo
$ uribo run ver
uribo 0.2.0
推荐的 Fish shell 配置
set -x URIBO_DEFAULT_CONFIG_PATH "$HOME/.uribo"
function fish_command_not_found
if uribo find $argv[1] > /dev/null 2> /dev/null
uribo run $argv
else
__fish_default_command_not_found_handler $argv[1]
end
end
依赖关系
~1.6–2.4MB
~48K SLoC