Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joemcmahon/file-lockdir
Basic file locking mechanism (from Perl Cookbook)
https://github.com/joemcmahon/file-lockdir
Last synced: 11 days ago
JSON representation
Basic file locking mechanism (from Perl Cookbook)
- Host: GitHub
- URL: https://github.com/joemcmahon/file-lockdir
- Owner: joemcmahon
- Created: 2009-08-20T23:44:36.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T19:19:58.000Z (almost 4 years ago)
- Last Synced: 2023-04-14T02:12:40.547Z (over 1 year ago)
- Language: Perl
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
File-LockDir version 0.02
This is an object-oriented version of the file-locking recipe in
the perl Cookbok, version 2.In addition to the features that the Cookbook version has, this
version allows you to conditionally disable the "clean up all locks
at termination" code and to check the status of a lock without trying
to get it.INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make installAlternatively, to install with Module::Build, you can use the following commands:
perl Build.PL
./Build
./Build test
./Build installDEPENDENCIES
None.
COPYRIGHT AND LICENCE
Copyright (C) 2006, Joe McMahon
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.