Subversion Repositories perlutils

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 rodolico 1
# Perl Utilities Repository
2
 
3
A collection of practical Perl utilities for programming, systems administration, and automation tasks.
4
 
5
## Getting the Source
6
 
7
This project may be exported or checked out via Subversion:
8
 
9
```bash
10
# Checkout with version control
11
svn checkout http://svn.dailydata.net/svn/perlutils/trunk perlutils
12
 
13
# Export without .svn metadata
14
svn export http://svn.dailydata.net/svn/perlutils/trunk perlutils
15
```
16
 
17
## Utilities
18
 
19
### perlConfigFileUtility
20
 
21
Configuration file management tool for merging templates, interactive editing, and format conversion (YAML/JSON). See [perlConfigFileUtility.md](perlConfigFileUtility.md) for complete documentation.
22
 
23
## Installation
24
 
25
Make scripts executable and add to your PATH:
26
```bash
27
chmod +x perlConfigFileUtility
28
sudo ln -s $(pwd)/perlConfigFileUtility /usr/local/bin/
29
```
30
 
31
See individual utility documentation for specific dependencies.
32
 
33
## License
34
 
35
Simplified BSD License (FreeBSD License)  
36
Copyright (c) 2026, Daily Data Inc.
37
 
38
## Author
39
 
40
R. W. Rodolico <rodo@dailydata.net>