executor alternatives and similar packages
Based on the "Distribution" category.
Alternatively, view executor alternatives based on common mentions on social networks and blogs.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of executor or a related project?
README
executor
Haskell module to execute single or multiple shell commands
API
exec
Execute a single shell command returning its output
import Executor (exec)
main = do
-- execute a simple `ls` in the current folder
res <- exec "echo hi"
-- hi\n
execSequenceSync
Execute a list of shell commands in sequence synchronously returning their results in a list
import Executor (execSequenceSync)
main = do
-- execute synchronously the following commands
res <- execSequenceSync [
"echo hi",
"sleep 1",
"echo goodbye"
]
-- ["hi\n", "", "goodbye\n"]
*Note that all licence references and agreements mentioned in the executor README section above
are relevant to that project's source code only.