• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

fallback/H17-Feb-2007-144134

t/H03-May-2022-9771

ChangesH A D17-Feb-2007818 2418

Locate.pmH A D17-Feb-20074.8 KiB14744

Locate.xsH A D03-May-202218 KiB728554

MANIFESTH A D10-Feb-2007309 2221

META.ymlH A D17-Feb-2007334 1210

Makefile.PLH A D10-Feb-20071.4 KiB4234

READMEH A D10-Feb-20071.2 KiB4829

const-c.incH A D17-Feb-20071.7 KiB5647

const-xs.incH A D17-Feb-20072.6 KiB8887

locatedb.hH A D10-Feb-20071.8 KiB437

ppport.hH A D10-Feb-200714.4 KiB541271

README

1File/Locate version 0.61
2========================
3
4File::Locate is a direct port of the GNU locate command. As of now, you can
5query an existing locate-db in a very similar way to locate(1L). The module
6can also deal with the more recent slocate-format.
7
8INSTALLATION
9
10To install this module type the following:
11
12   perl Makefile.PL
13   make
14   make test
15   make install
16
17When using suncc under Solaris, you probably have to do
18
19   perl Makefile.PL CCFLAGS=-Xa
20
21in order to put ucbcc into ANSI mode.
22
23DEPENDENCIES
24
25This module requires these other modules and libraries:
26
27    Test::More
28
29An existing locate-db wont hurt, too. ;-) You can create one manually if
30you have the frcode program:
31
32  find / | frcode > locatedb
33
34PLATFORMS
35
36Tested on Perl5.005_03, Perl5.8.4 and 5.6.1 under Linux (gcc3.2) and with Perl5.005_03
37and various BSDs. 0.60 and later (unlike 0.01) not tested on Solaris.
38
39COPYRIGHT AND LICENCE
40
41Copyright (C) 2003-2005 Tassilo von Parseval
42
43This program is free software; you can redistribute it and/or modify it
44under the terms of the GNU General Public License as published by the Free
45Software Foundation; either version 2, or (at your option) any later
46version.
47
48