Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

htag(1) [debian man page]

HTAG(1) 						User Contributed Perl Documentation						   HTAG(1)

NAME
htag.pl - Add taglines and sigs to email, news and fidonet messages. SYNOPSIS
htag.pl [-t tagfile -c cfgfile] -m msgfile htag.pl -f sigfile htag.pl -h DESCRIPTION
htag.pl is a sigmonster. It is designed to be extendable in many different ways through its use of plugins. It might be getting a little bit too sentient in its old age though. It can be used like this: htag.pl -m $1 $EDITOR $1 For information on configuration see the sample.htrc file To create signature files, it is tedious to have to work out what will and won't line up. This is why the -f option exists. Feed it a sigfile and it will replace the @[0-9]+[RC]?@ bits with required number of spaces so you can see if you got it right or not. (You could even run it from your favourite editor e.g. ":! htag.pl -f %" for vim on the current file.) BUGS
Inserting a tagline containing "@[0-9]+[RC]?@" has interesting results. This documentation is useless. Use The Source Luke. FILES
~/.htrc Config file SEE ALSO
http://www.earth.li/progs/htag.html AUTHOR
Simon Huggins <huggie@earth.li> perl v5.10.0 2008-06-16 HTAG(1)

Check Out this Related Man Page

Nagios::Plugin::Config(3pm)				User Contributed Perl Documentation			       Nagios::Plugin::Config(3pm)

NAME
Nagios::Plugin::Config - read nagios plugin .ini style config files SYNOPSIS
# Read given nagios plugin config file $Config = Nagios::Plugin::Config->read( '/etc/nagios/plugins.ini' ); # Search for and read default nagios plugin config file $Config = Nagios::Plugin::Config->read(); # Access sections and properties (returns scalars or arrayrefs) $rootproperty = $Config->{_}->{rootproperty}; $one = $Config->{section}->{one}; $Foo = $Config->{section}->{Foo}; DESCRIPTION
Nagios::Plugin::Config is a subclass of the excellent Config::Tiny, with the following changes: o Repeated keys are allowed within sections, returning lists instead of scalars o Write functionality has been removed i.e. access is read only o Nagios::Plugin::Config searches for a default nagios plugins file if no explicit filename is given to "read()". The current standard locations checked are: /etc/nagios/plugins.ini /usr/local/nagios/etc/plugins.ini /usr/local/etc/nagios /etc/opt/nagios/plugins.ini /etc/nagios-plugins.ini /usr/local/etc/nagios-plugins.ini /etc/opt/nagios-plugins.ini To use a custom location, set a "NAGIOS_CONFIG_PATH" environment variable to the set of directories that should be checked. The first "plugins.ini" or "nagios-plugins.ini" file found will be used. SEE ALSO
Config::Tiny, Nagios::Plugin AUTHORS
This code is maintained by the Nagios Plugin Development Team: <http://nagiosplug.sourceforge.net>. COPYRIGHT and LICENCE Copyright (C) 2006-2007 by Nagios Plugin Development Team This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-12-03 Nagios::Plugin::Config(3pm)
Man Page