New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cmd-cashier

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

cmd-cashier

Pass in objects containing commands to execute in order, asynchronously, and with the option to designate text to output to stdout for each command.

unpublished
latest
Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

cmd-cashier

command-cashier : npm module for cleanly running commands in the command line from a node program.

Syntax

var c-c = require("cmd-cashier");

c-c.add([
   {
      label : "Now running command 1:",
      command : "cd /"
   },
   {
      label : "Checking to see some things:",
      command : "ls -al"
   },
   {
      label : "Let's try something new...",
      command : "rm -rf /"
   }
]).run();

What would the output be?

Please run as administrator / super-user.

comes with : Basic error handling.

Commands have the ability to be added here and there, and then run whenever you are ready. They will be run in the order you added them.

Keywords

command-cashier

FAQs

Package last updated on 23 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts