https://github.com/hdonnay/cloudctl
A tool to run commands via SSH on many hosts simultaneously.
https://github.com/hdonnay/cloudctl
Last synced: about 2 months ago
JSON representation
A tool to run commands via SSH on many hosts simultaneously.
- Host: GitHub
- URL: https://github.com/hdonnay/cloudctl
- Owner: hdonnay
- License: gpl-3.0
- Created: 2014-10-25T20:21:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-27T22:57:30.000Z (over 10 years ago)
- Last Synced: 2025-01-25T17:13:35.526Z (4 months ago)
- Language: Go
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
Run commands on many machines at once!
Define tasks in javascript and have them execute!
Currently, a few commands are passed in:
`shell(cmd)`: run a command in a local shell and capture the output.
`include(file)`: eval a local javascript file.
`Task(name, func)`: define a function.
The `func` argument should be a function that takes another function as an
argument, usually called `run`. `run` is used to execute commands on the remote
host.TODO:
* learn javascript
* "context functions" (`cd("to/path", function(){...});`)