Shell脚本与Node.js

前端之家收集整理的这篇文章主要介绍了Shell脚本与Node.js前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有任何节点框架或节点库,我可以用来编写一个 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
原文链接:https://www.f2er.com/bash/383611.html

猜你在找的Bash相关文章