Popularity
8.5
Stable
Activity
0.0
Stable
68
6
4
Monthly Downloads: 15
Programming language: Haskell
License: MIT License
Tags:
Development
Latest version: v1.14.0
hesh alternatives and similar packages
Based on the "Development" category.
Alternatively, view hesh alternatives based on common mentions on social networks and blogs.
-
cabal-install-parsers
Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations -
fourmolu
A fourk of ormolu that uses four space indentation and allows arbitrary configuration. Don't like it? PRs welcome!
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of hesh or a related project?
Popular Comparisons
README
Hesh - The Haskell-Extensible Shell
Hesh makes writing scripts in Haskell easier. Here's an example:
#!/usr/bin/env hesh
-- Backup a PostgreSQL database to an encrypted file.
main = do
args <- System.Environment.getArgs
case args of
[database] -> do
today <- $(date +%Y-%m-%d)
let file = database ++ "-" ++ today ++ ".sql.gpg"
$(pg_dump $database) |> $(gpg -e -r $EMAIL) /> file
_ -> do
progName <- System.Environment.getProgName
$(echo "Usage: $progName <database>") /> "/dev/stderr"
For more details, see the [manual](manual/manual.pdf).