doctools::nroff::man_macros(n) Documentation tools doctools::nroff::man_macros(n)
__________________________________________________________________________________________________________________________________________________NAME
doctools::nroff::man_macros - Default CSS style for NROFF export plugins
SYNOPSIS
package require Tcl 8.4
package require doctools::nroff::man_macros ?0.1?
::doctools::nroff::man_macros::contents
_________________________________________________________________DESCRIPTION
This package provides a single command providing access to the definition of the nroff man macro set to use for NROFF markup generated by
the various NROFF export plugins.
This is an internal package of doctools, for use by export plugins, i.e. the packages converting doctools related documented into other
formats, most notably nroff.
API
::doctools::nroff::man_macros::contents
This command returns the text of the default CSS style to use for NROFF generated by the various NROFF export plugins.
BUGS, IDEAS, FEEDBACK
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category doctools
of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for
either package and/or documentation.
KEYWORDS
doctools, export, macros, man_macros, nroff, plugin
CATEGORY
Documentation tools
COPYRIGHT
Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
doctools2base 0.1 doctools::nroff::man_macros(n)
Check Out this Related Man Page
doctools::msgcat::toc::c(n) Documentation tools doctools::msgcat::toc::c(n)
__________________________________________________________________________________________________________________________________________________NAME
doctools::msgcat::toc::c - Message catalog for the doctoc parser (C)
SYNOPSIS
package require Tcl 8.4
package require msgcat
package require doctools::msgcat::toc::c ?0.1?
_________________________________________________________________DESCRIPTION
The package doctools::msgcat::toc::c is a support module providing the C language message catalog for the doctoc parser in the doctools
system version 2. As such it is an internal package a regular user (developer) should not be in direct contact with.
If you are such please go the documentation of either
[1] doctools::doc,
[2] doctools::toc, or
[3] doctools::idx
Within the system architecture this package resides under the package doctools::msgcat providing the general message catalog management
within the system. Note that there is no explicit dependency between the manager and catalog packages. The catalog is a plugin which is
selected and loaded dynamically.
API
This package has no exported API.
BUGS, IDEAS, FEEDBACK
This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category doctools
of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for
either package and/or documentation.
KEYWORDS
C, catalog package, doctoc, doctools, i18n, internationalization, l10n, localization, message catalog, message package
CATEGORY
Documentation tools
COPYRIGHT
Copyright (c) 2009 Andreas Kupries <andreas_kupries@users.sourceforge.net>
doctools2toc 0.1 doctools::msgcat::toc::c(n)
I was wondering if anyone knows of any dashboard style tools for AIX. One of my many responsibilities is to report the status of the boxes and whether certain things are "up" and running each and every day. Nonetheless, this is a MAJOR pain as I have to logon to each box, pull up URLs through my... (3 Replies)
Hi
Input File:
export NAME='AA.BB.CC'
export FILE=1.2.3
AA.BB.CC
export MAIL= '1.3.3'
export char='XX.YY.ZZ'
Out File
export NAME='AA/BB/CC'
export FILE=1.2.3
AA.BB.CC
export MAIL= '1.3.3'
export char='XX/YY/ZZ'
Only the Lines which have export and have alphabets after =... (9 Replies)
I'm in .profile. I want to export a directory ( export MY_TOOL_HOME=/tools/my tool". Unfortunately for me, the directory I want to export to has a space in its name. So when I try to cd $MY_TOOL_HOME, i get a No such file or directory at the command line... thanks for the help (4 Replies)
I ran the Oracle 9i export command from a terminal to export out a big table using "exp andrew/password file=andrew.dmp log=andrew.log"
From the terminal I can see that the export is running as there is some output from the oracle export job. The export job is not complete yet. When i go check... (4 Replies)
Hi
I need to export some directpry path like below:
var1=/<>/<>/<>
export var1
This is my basic idea.
I tried export var1=/<>/<>/<>
after executing this in a shell i did an echo of the var1. But nothing happened.
Can you please help me with this.
I need to srite a script to... (4 Replies)
Hello friends,
I have a database export and with this export i need to find some statistics which is required. I take the export of a table with only 3 columns like this:
2nd 3rd 12th
123 05.11.2010 09:27 0
124 05.11.2010 09:28 0
125 05.11.2010 09:34 1
126 05.11.2010 09:39 0... (5 Replies)
Hi,
I know that export command is used to set environment variable.
Can you please explain what ":--100" in the below command is doing?
export ROWSTOLOAD=${ROWSTOLOAD:--100}
Thanks,
Gangadhar (5 Replies)
Hi,
Below is the content of the file how it looks:
# EMAIL
#export BMS_EMAIL_ENABLED=true
export BMS_EMAIL_ENABLED=false
#export BMS_EMAIL_SERVER=esasmtp01.kohls.com
export BMS_EMAIL_SERVER=esasmtp01.kohls.com.SMTP_SERVICE
export BMS_EMAIL_FROM_ADDRESS=ec_notify@kohlsectest.com
export... (4 Replies)
hi
i have some lines in a text file like,
export ORACLE_HOME=/home/dell/instantclient_11_2
export LD_LIBRARY_PATH=$ORACLE_HOME:${LD_LIBRARY_PATH}
export PATH=$ORACLE_HOME:$ORACLE_HOME/sdk:${PATH}
how to run this file such that every line will be exported in unix session (3 Replies)
Hi
I want export input data ...
echo "month: "
read m
export m=$m
also export m is not working ?
the month-variable should be exportet for the use in other scripts,
but it is not working like this. What i'm doing wrong?
Thanks in advance!
IMPe (10 Replies)
Hello Team,
Could you pls explain how export command works in below code:
for i in ${!SDV_*}; do
export $i
done
As per my understanding, if
SDV_1=test1;SDV_2=test2;test1=var1;test2=var2then in for loop below export will get executed.
export var1;export var2But, Will this... (3 Replies)