shellmet: Out of the shell solution for scripting in Haskell

[ command-line, library, mpl, shell ] [ Propose Tags ]

Shellmet provides easy and convenient way to call shell commands from Haskell programs


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.0.0, 0.0.1, 0.0.2.0, 0.0.3.0, 0.0.3.1, 0.0.4.0, 0.0.4.1
Change log CHANGELOG.md
Dependencies base (>=4.10.1.0 && <4.13), process (>=1.6.3 && <1.7), shellmet, text (>=1.2.3 && <1.3) [details]
License MPL-2.0
Copyright 2019 Kowainik
Author Kowainik
Maintainer xrom.xkov@gmail.com
Category Shell, Command Line
Home page https://github.com/kowainik/shellmet
Bug tracker https://github.com/kowainik/shellmet/issues
Source repo head: git clone https://github.com/kowainik/shellmet.git
Uploaded by shersh at 2019-02-23T14:55:26Z
Distributions Arch:0.0.4.1, LTSHaskell:0.0.4.1, NixOS:0.0.4.1
Reverse Dependencies 4 direct, 1 indirect [details]
Executables readme
Downloads 3719 total (41 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user [build log]
All reported builds failed as of 2019-02-23 [all 1 reports]

Readme for shellmet-0.0.0

[back to package description]

shellmet

Build status Hackage MPL-2.0 license Stackage Lts Stackage Nightly

Out of the shell solution for scripting in Haskell. Shellmet provides an easy and convenient way to call shell commands from Haskell programs.

Usage example

This README contains the usage example of the shellmet library. The example is runnable. You can build and execute with the following command:

cabal new-run readme

Setting up

Since this tutorial is written using Literate Haskell, first, let's write all necessary pragmas and imports.

{-# LANGUAGE OverloadedStrings #-}

import Data.Semigroup ((<>))
import Shellmet (($|))

import qualified Data.Text as T

Simple scripting example

Below you can see how easy it is to interact with shell commands in Haskell:

main :: IO ()
main = do
    "echo" ["Starting shellmet readme..."]
    text <- "cat" $| ["README.md"]
    let cnt = T.pack $ show $ length $ T.lines text
    "echo" ["Number of lines in this README: " <> cnt]

And the output is:

⚙  echo 'Starting shellmet readme...'
Starting shellmet readme...
⚙  echo 'Number of lines in this README: 54'
Number of lines in this README: 54