haskell-awk: Transform text from the command-line using Haskell expressions.

[ apache, console, library, program ] [ Propose Tags ]
This version is deprecated.

Hawk is a command line utility to process streams of text using Haskell code. It is intended to be used in a UNIX pipeline. It offers a configuration system to personalize imported modules and a way to represent values on the console.


[Skip to Readme]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 1.0, 1.0.1, 1.1, 1.1.1, 1.2, 1.2.0.1 (info)
Dependencies base (<0), bytestring (>=0.10.0.2), containers, directory (>=1.2.0.1), easy-file (>=0.1.1), filepath (>=1.3.0.1), haskell-src-exts (>=1.14.0), hint (>=0.3.3.5), MonadCatchIO-mtl (>=0.3.0.0), network (>=2.3.1.0), process (>=1.1.0.2), stringsearch (>=0.3.6.4), time [details]
License Apache-2.0
Author Mario Pastorelli <pastorelli.mario@gmail.com>, Samuel Gélineau <gelisam@gmail.com>
Maintainer Mario Pastorelli <pastorelli.mario@gmail.com>, Samuel Gélineau <gelisam@gmail.com>
Revised Revision 2 made by gelisam at 2024-02-09T05:51:32Z
Category Console
Source repo head: git clone https://github.com/gelisam/hawk
Uploaded by MarioPastorelli at 2014-01-07T14:07:39Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables hawk
Downloads 4696 total (18 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for haskell-awk-1.0

[back to package description]

Hawk

Transform text from the command-line using Haskell expressions. Similar to awk, but using Haskell as the text-processing language.

Examples

In Unix the file /etc/passwd is used to keep track of every registered user in the system. Each entry in the file contains information about a single user, using a simple colon-separated format. For example:

root:x:0:0:root:/root:/bin/bash

The first field is the username. We can use Hawk to list all usernames as follows:

> cat /etc/passwd | hawk -d: -m 'head'
root

The -d option tells Hawk to use : as word delimiters, causing the first line to be interpreted as ["root", "x", "0", "0", "root", "/root", "/bin/bash"]. The -m tells Hawk to map a function over each line of the input. In this case, the function head extracts the first word of the line, which happens to be the username.

We could of course have achieved identical results by using awk instead of Hawk:

> cat /etc/passwd | awk -F: '{print $1}'
root

While Hawk and awk have similar use cases, the philosophy behind the two is very different. Awk uses a specialized language designed to concisely express many text transformations, while Hawk uses the general-purpose language Haskell, which is also known for being concise, among other things. There are many standard command-line tools that can be easily approximated using short Haskell expressions.

Another important difference is that while awk one-liners are self-contained, Hawk encourages the use of libraries and user-defined functions. By adding function definitions, module imports and language pragmas to Hawk's user-configurable prelude file, those functions, libraries and language extensions become available to Hawk one-liners. For instance, we could add a takeLast function extracting the last n elements from a list, and use it to (inefficiently) approximate tail:

> echo 'takeLast n = reverse . take n . reverse' >> ~/.hawk/prelude.hs
> seq 0 100 | hawk -a 'takeLast 3'
98
99
100

For more details, see the documentation.

Installation

To install the stable version, simply use cabal install haskell-hawk and add ~/.cabal/bin (or your sandbox's bin folder) to your PATH. You should be ready to use Hawk:

> hawk '[1..3]'
1
2
3

To install the development version, clone this repository and use cabal install or cabal-dev install to compile Hawk and its dependencies. Cabal installs the binary to ~/.cabal/bin/hawk, while cabal-dev installs it to ./cabal-dev/bin/hawk. The first run will create a default configuration into ~/.hawk/prelude.hs if it doesn't exist.