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

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...