0.2.2 • Published 9 years ago

suspawn v0.2.2

Weekly downloads
134
License
MIT
Repository
github
Last release
9 years ago

SuSpawn

example

require('suspawn')('env', {
  env: {
    VARBLOCKEDBYSUDOERSNORMALLY: 'BUT NOT NOW!'
  }
}).stdout.pipe(process.stdout);

suspawn(command, args)

options.spawnOptions.env

Environmental variables to pass to the sudo command.

options.env

Environmental variables to pass through to the spawned command.

options.uid

User to spawn as.

options.gid

Group to spawn as.

suspawn.getSpawnOptions(command, args)

A useful little function if you do not actually want to spawn the process, but would rather get the options to spawn it yourself. This allows some modification instead of straight spawning.