Glob: Globbing library

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

A library for globbing: matching patterns against file paths.


[Skip to Readme]

Properties

Versions 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.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.4), dlist (>=0.4 && <0.9), filepath (>=1.1 && <1.5), semigroups (>=0.18 && <0.19), transformers (>=0.2 && <0.6), transformers-compat (>=0.3 && <0.6), 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/
Source repo head: git clone https://github.com/Deewiant/glob
Uploaded by MattiNiemenmaa at 2017-11-04T15:51:06Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


Readme for Glob-0.9.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