Coder Social home page Coder Social logo

connection_module's Introduction

A collection of connection modules ssh sftp oracle

sftpBatchSync

sftpBatchSync wraps the ssh sftp command as a child process, executing supplied sequence of commands in a batch.

Recommended practice is to enable the account to ssh via key installed in the ~/.ssh directory, with an entry in the ~/.ssh/config for the destination host. Alternatively, it is possible to use the -i argument for sftp to use a different key * file. In this case you must ensure that the key file is chmod 600.

The sftp command will abort if any of the following commands fail: get, put, reget, reput, rename, ln, rm, mkdir, chdir, ls, lchdir, chmod, chown, chgrp, lpwd, df, symlink, and lmkdir. Termination on error can be suppressed on a command by command basis by prefixing the command with a โ€˜-โ€™ character (for example, -rm /tmp/blah*).

The stdout, stderr, and status of the child process is returned. The output is converted to strings, with the sftp> prompt and issued commands filtered out.

Installation

npm install -s ds-restauration/connection_module

Example

const { sftpBatchSync } = require('@ds-restauration/connection_module');

sftpArgs = {
  host: '192.168.1.1',
  user: 'bungo'  
};

sftpBatch = [
  'cd /c:',
  'ls -alht'
];

batchCmd = sftpBatchSync( sftpArgs, sftpBatch );

console.log(batchCmd);

connection_module's People

Contributors

hercemer42 avatar ds-restauration avatar

Watchers

James Cloos avatar Nad Maximus avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.