Popularity
1.0
Growing
Activity
0.0
Stable
1
1
0
Monthly Downloads: 18
Programming language: Haskell
License: MIT License
Tags:
Distribution
Latest version: v0.0.4
executor alternatives and similar packages
Based on the "Distribution" category.
Alternatively, view executor alternatives based on common mentions on social networks and blogs.
-
rpmbuild-order
Sorts source rpm package spec files into dependency order -
cabal-toolkit
Helper functions for writing custom Setup.hs scripts. -
cabal-build-programs
Adds executable dependencies to the Cabal build -
distribution-opensuse
Types, functions, and tools to manipulate the openSUSE distribution. -
codec-rpm
A haskell module and tools for inspecting and exploding RPMs. -
fedora-haskell-tools
Fedora Haskell package maintenance tools
Less time debugging, more time building
Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
Promo
scoutapm.com
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.