Skip to content

tcardoso2/ssh-exec-simple

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ssh-exec-simple

A simple wrapper to the linux command ssh user@server "<some command>" which allows executing remote scripts via ssh provided the host has the permissions (make sure you generate the keys via ssh keygen and copy the pub key to the host).

    ssh.defineHost("pi", "192.168.x.x");
    
    ssh.run("pwd", (err, output) => {
      //Do your handling here
      if(!err) {
        console.log(`Result is: ${output}`);
      }
    });
  • Testing *

With mocha. Use environment variables as such to substitute with your user@host:

TEST_USER=test TEST_HOST=192.168.0.160 mocha

About

A simple wrapper to ssh user@server "Command" which allows executing remote scripts via ssh provided the host has the permissions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published