例如,我只需要像下面这样编辑配置文件:
clean:
rpc:
rm -rf ./rpc
api
rm -rf ./api
跑:
> make clean rpc
但是,make不支持嵌套子命令。
一个不错的选择是https://github.com/spf13/cobra,它支持subcommands和command alias...但它是在 golang 中使用的,而不是 shell。
我想知道我们有cobra壳吗?
慕莱坞森
相关分类