我正在尝试将https://github.com/RubinLab/aimconvert添加到我的/ bin中,以便可以像Linux命令一样运行它。我该怎么办?
答案 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
可能不起作用。