unix-cmd

0.0.1 • Public • Published

Unix-cmd

A Node.js module for executing unix command line script

Install

npm install unix-cmd

Introduction

This Node.js module has been created for a comfort using of unix command line. This module works with base modules of Node.

Here is an example on how to use direct command line :

bash = require('unix-cmd');
bash.commandLine("echo 'Hello World !' ");

In this example, commandLine function requires only one parameter, the unix command. If the command is wrong, the script displays the error.

This module provides means of executing file of commands.

bash = require('unix-cmd');
bash.commandFile("/home/scripts/test1");

with test1 :

mkdir toto
touch toto/example
ls toto

In this second example, commandFile function requires the file's path.

Readme

Keywords

none

Package Sidebar

Install

npm i unix-cmd

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • thomas_dupre