Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/andrenth/ocaml-glob
- Owner: andrenth
- Created: 2008-10-21T20:53:18.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2009-08-17T20:03:48.000Z (over 15 years ago)
- Last Synced: 2023-04-12T06:59:59.324Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 85 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
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