반응형

example.js

#!/usr/bin/env node
const shell = require('shelljs')

shell.cd('~')

if(shell.exec('ls -la').code !== 0) {
  shell.echo('Error: command failed')
  shell.exit(1)
}

실행 권한 부여

chmod +x example.js

실행

./example.js

참고

반응형

'Development > NodeJS' 카테고리의 다른 글

[NodeJS] Custom Module 사용하기  (0) 2020.12.29
[NodeJS] http 모듈을 활용한 웹서버 예제  (0) 2020.12.29
[NodeJS] prettier, eslint 설정  (0) 2020.12.29
[NodeJS] Node 설치하기  (0) 2020.12.29
[NodeJS] babel plugin 만들기  (0) 2019.11.14

+ Recent posts