├── README.md ├── prime.sh ├── ssec2 ├── ssec2B ├── ssec2C ├── ssec2L └── wrap_cmd.sh /README.md: -------------------------------------------------------------------------------- 1 | 2 | Amazon's elastic cloud compute(EC2) provides on-demand and reasonably priced 3 | general purpose computing resources. However, it can be a pain to use. Stupid 4 | Simple Elastic Cloud Compute was written as a minimal wrapper around EC2 so 5 | that it mimics a typical compute cluster where users can either log into nodes 6 | directly, or simply submit work (in the form of a bash script) to be completed. 7 | 8 | # Usage 9 | 10 | There are two cattegories of commands, launch and connect. 11 | 12 | ``` 13 | $ ssec2 -h 14 | 15 | usage: ssec2 SUBCOMMAND OPTIONS 16 | 17 | launch Launch a new instance 18 | connect Conntect to instances 19 | ``` 20 | 21 | `launch` spins up instances that you can send work to (bash script) or log into 22 | 23 | ``` 24 | $ ssec2 launch -h 25 | 26 | usage: ssec2L OPTIONS