Shell脚本与Node.js
发布时间:2020-12-16 01:28:06 所属栏目:安全 来源:网络整理
导读:我想知道是否有任何节点框架或节点库,我可以用来编写一个 shell脚本?例如,我有bash shell程序来安装Graphite和OpenTSDB RRD工具,我想使用node.js,可以吗? 谢谢 看看 shelljs – 它实现了shell和gnu coreutils的功能. 与coffeescript一起,它可以看起来非常
我想知道是否有任何节点框架或节点库,我可以用来编写一个
shell脚本?例如,我有bash shell程序来安装Graphite和OpenTSDB RRD工具,我想使用node.js,可以吗?
谢谢
看看
shelljs – 它实现了shell和gnu coreutils的功能.
与coffeescript一起,它可以看起来非常类似于一个shell脚本: if not which 'git' echo 'Sorry,this script requires git' exit 1 # Copy files to release dir mkdir '-p','out/Release' cp '-R','stuff/*','out/Release' # Replace macros in each .js file cd 'lib' for file in ls '*.js' sed '-i','BUILD_VERSION','v0.1.2',file sed '-i',/.*REMOVE_THIS_LINE.*n/,'',/.*REPLACE_LINE_WITH_MACRO.*n/,cat 'macro.js',file cd '..' # Run external tool synchronously if (exec 'git commit -am "Auto-commit"').code != 0 echo 'Error: Git commit failed' exit 1 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |