Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrenth/ocaml-glob

Simple wrapper around glob(3) for OCaml
https://github.com/andrenth/ocaml-glob

Last synced: about 1 month ago
JSON representation

Simple wrapper around glob(3) for OCaml

Awesome Lists containing this project

README

        

ocaml-glob
~~~~~~~~~~

== Introduction

This is a trivial wrapper around libc's glob(3) function for OCaml. The Glob
module interface contains a single function, glob. This function takes a
string argument possibly containing shell wildcards, and returns an array
containing the names of the file system entries matching it.

== Installation

To build the bytecode library:

$ make

To build the native code library:

$ make opt

You can build both in a single step with

$ make reallyall

To install, type

# make install