Name: shelly Version: 0.14.2.3 x-revision: 1 Synopsis: shell-like (systems) programming in Haskell Description: Shelly provides convenient systems programming in Haskell, similar in spirit to POSIX shells. Shelly: . * is aimed at convenience and getting things done rather than being a demonstration of elegance. . * has detailed and useful error messages . * maintains its own environment, making it thread-safe. . * is modern, using Text and system-filepath/system-fileio . Shelly is originally forked from the Shellish package. . See the shelly-extra package for additional functionality. . An overview is available in the README: Homepage: https://github.com/yesodweb/Shelly.hs License: BSD3 License-file: LICENSE Author: Greg Weber, Petr Rockai Maintainer: Greg Weber Category: Development Build-type: Simple Cabal-version: >=1.8 Library Exposed-modules: Shelly, Shelly.Pipe other-modules: Shelly.Base, Shelly.Find Build-depends: base >= 4 && < 4.8, time, directory, text, mtl , process >= 1.0 , unix-compat < 0.5 , system-filepath < 0.5 , system-fileio < 0.4 , bytestring ghc-options: -Wall test-suite test type: exitcode-stdio-1.0 main-is: main.hs hs-source-dirs: ., test ghc-options: -Wall Build-depends: base >= 4 && < 4.8, time, directory, text, mtl, process , unix-compat < 0.5 , system-filepath < 0.5 , system-fileio < 0.4 , bytestring , hspec-discover , hspec >= 1.3 , HUnit -- demonstarated that command output in Shellish was not shown until after the command finished -- not necessary anymore -- Executable drain -- main-is: test/drain.hs source-repository head type: git location: https://github.com/yesodweb/Shelly.hs