如何向使用curl下载的脚本添加命令行选项

时间:2016-05-22 20:02:01

标签: bash curl arguments process-substitution

我的CI脚本中有以下内容。 。

- curl -s https://codecov.io/bash >> codecov
- chmod +x codecov
- ./codecov -gtest

ge var sum_millis = date1.getTime()+date2.getTime(); var sum=new Date(sum_millis); console.log(sum.toString()); 位工作的正确语法是什么?

当然

copy()

..但是可以在不使用本地文件的情况下完成吗?

1 个答案:

答案 0 :(得分:2)

我不建议传递output from curl directly to bash,但你试过了吗?

bash <(curl -s https://codecov.io/bash) -gtest

测试:

% bash <(echo 'echo "$@"') -gtest and more
-gtest and more