如何从github存储库创建linux shell命令?

时间:2020-09-19 23:18:02

标签: linux github

我正在尝试将https://github.com/RubinLab/aimconvert添加到我的/ bin中,以便可以像Linux命令一样运行它。我该怎么办?

1 个答案:

答案 0 :(得分:1)

您可以先从README中在本地克隆的存储库中本地执行它

git clone https://github.com/RubinLab/aimconvert
cd aimconvert/bin
./aimconvert xml2json inputDirPath outputDirPath 

inputDirPath中的每个xml转换为json并放入outputDirPath中。
创建outputDirPath(如果不存在)

我建议首先以这种方式进行测试,因为bin/aimconvert基于相对路径:

#!/usr/bin/env node
require('../')();

因此,将bin/aimconvert直接添加到您的/bin可能不起作用。