Shell脚本与Node.js

前端之家收集整理的这篇文章主要介绍了Shell脚本与Node.js前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道是否有任何节点框架或节点库,我可以用来编写一个 shell脚本?例如,我有bash shell程序来安装Graphite和OpenTSDB RRD工具,我想使用node.js,可以吗?

谢谢

看看 shelljs – 它实现了shell和gnu coreutils的功能.
与coffeescript一起,它可以看起来非常类似于一个shell脚本:
  1. if not which 'git'
  2. echo 'Sorry,this script requires git'
  3. exit 1
  4.  
  5. # Copy files to release dir
  6. mkdir '-p','out/Release'
  7. cp '-R','stuff/*','out/Release'
  8.  
  9. # Replace macros in each .js file
  10. cd 'lib'
  11. for file in ls '*.js'
  12. sed '-i','BUILD_VERSION','v0.1.2',file
  13. sed '-i',/.*REMOVE_THIS_LINE.*\n/,'',/.*REPLACE_LINE_WITH_MACRO.*\n/,cat 'macro.js',file
  14. cd '..'
  15.  
  16. # Run external tool synchronously
  17. if (exec 'git commit -am "Auto-commit"').code != 0
  18. echo 'Error: Git commit Failed'
  19. exit 1

猜你在找的Bash相关文章