Glob: Globbing library

[ bsd3, library, system ] [ Propose Tags ]

A library for globbing: matching patterns against file paths.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.2, 0.3, 0.3.1, 0.3.2, 0.4, 0.5, 0.5.1, 0.6, 0.6.1, 0.7, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7, 0.7.8, 0.7.9, 0.7.10, 0.7.11, 0.7.12, 0.7.13, 0.7.14, 0.8.0, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.10.0, 0.10.1, 0.10.2
Change log CHANGELOG.txt
Dependencies base (>=4 && <5), containers (<0.6), directory (<1.2), dlist (>=0.4 && <0.6), filepath (>=1.1 && <1.4), transformers (>=0.2 && <0.4), Win32 (>=2 && <3) [details]
License BSD-3-Clause
Author Matti Niemenmaa
Maintainer Matti Niemenmaa <matti.niemenmaa+glob@iki.fi>
Category System
Home page http://iki.fi/matti.niemenmaa/glob/
Uploaded by MattiNiemenmaa at 2012-07-03T15:49:49Z
Distributions Arch:0.10.2, Debian:0.10.1, Fedora:0.10.2, FreeBSD:0.7.5, LTSHaskell:0.10.2, NixOS:0.10.2, Stackage:0.10.2, openSUSE:0.10.2
Reverse Dependencies 61 direct, 3554 indirect [details]
Downloads 101984 total (249 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for Glob-0.7.1

[back to package description]
This is Glob, a Haskell library for globbing, i.e. pattern matching file paths
akin to the POSIX glob() function. Haddock documentation is included, and can
be built with the 'cabal haddock' command. Basic usage info is repeated below:

Matching pattern (a String) against filepath (a FilePath):

	match (compile pattern) filepath

Matching a pattern against all paths in the current working directory:

	glob pattern

Matching a pattern against all paths in a given directory (a FilePath):

	globDir1 (compile pattern) directorypath

Matching a list of patterns against all paths in a given directory, returning
the matches for each pattern as well as the paths not matched by any of the
patterns:

	globDir (map compile patterns) directorypath