Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amalfra/oexec
oexec is a Go package to execute shell commands in specified order
https://github.com/amalfra/oexec
cmd exec go golang order package shell
Last synced: 21 days ago
JSON representation
oexec is a Go package to execute shell commands in specified order
- Host: GitHub
- URL: https://github.com/amalfra/oexec
- Owner: amalfra
- License: mit
- Created: 2017-08-19T08:44:18.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T11:14:09.000Z (7 months ago)
- Last Synced: 2024-10-12T12:25:59.892Z (about 1 month ago)
- Topics: cmd, exec, go, golang, order, package, shell
- Language: Go
- Homepage:
- Size: 21.5 KB
- Stars: 23
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
oexec
=====
[![GitHub release](https://img.shields.io/github/release/amalfra/oexec.svg)](https://github.com/amalfra/oexec/releases)
![Build Status](https://github.com/amalfra/oexec/actions/workflows/test.yml/badge.svg?branch=main)
[![GoDoc](https://godoc.org/github.com/amalfra/oexec/v3?status.svg)](https://godoc.org/github.com/amalfra/oexec/v3)
[![Go Report Card](https://goreportcard.com/badge/github.com/amalfra/oexec/v3)](https://goreportcard.com/report/github.com/amalfra/oexec/v3)
[![Coverage Status](https://coveralls.io/repos/github/amalfra/oexec/badge.svg?branch=main)](https://coveralls.io/github/amalfra/oexec?branch=main)A go package to execute shell commands in specified order. Currently supports executing list of shell commands in following orders:
* Series
* Parallel## Installation
You can download the package using
```sh
go get github.com/amalfra/oexec/v3
```
## Usage
Next, import the package
``` go
import (
"github.com/amalfra/oexec/v3"
)
```
You can execute list of shell commands in following orders:
* Series
* ParallelThe result of each command will be returned as ```oexec.Output``` struct which has fields
* Stdout - a ```byte``` array containing stdout produced by the command. Will be nil if command status is non zero
* Stderr - an ```error``` object containing stderr returned by the command. Will be nil if command status is zero### executing in series
To execute commands in series call the function as
``` go
oexec.Series("ls -l", "pwd")
```
You can pass any number of commands to execute as parameters. All the passed commands will get executed in series and results will be return once all of them are completed. The results are returned as an array of ```oexec.Output``` struct, having the result corresponding to a command at same position of argument as in Series function call(position starts are zero)### executing in parallel
> Note: Precisely the commands will be executed concurrently unless configured otherwise via ```GOMAXPROCS``` environment variable and depending on underlying hardwareTo execute commands in parallel call the function as
``` go
oexec.Parallel("ls -l", "pwd")
```
You can pass any number of commands to execute as parameters. All the passed commands will get executed in parallel and results will be return once all of them are completed. The results are returned as an array of ```oexec.Output``` struct, having the result corresponding to a command at same position of argument as in Series function call(position starts are zero)## Development
Questions, problems or suggestions? Please post them on the [issue tracker](https://github.com/amalfra/oexec/issues).
You can contribute changes by forking the project and submitting a pull request. You can ensure the tests are passing by running ```make test```. Feel free to contribute :heart_eyes:
## UNDER MIT LICENSE
The MIT License (MIT)
Copyright (c) 2017 Amal Francis
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.