INTRO(7) Miscellaneous Information Manual INTRO(7)NAME
miscellaneous - miscellaneous useful information pages
DESCRIPTION
This section contains miscellaneous documentation, mostly in the area of text processing macro packages for troff(1).
ascii map of ASCII character set
environ user environment
eqnchar special character definitions for eqn
hier file system hierarchy
mailaddr mail addressing description
man macros to typeset manual pages
me macros for formatting papers
ms macros for formatting manuscripts
term conventional names for terminals
4.2 Berkeley Distribution May 20, 1985 INTRO(7)
Check Out this Related Man Page
eqnchar(5) Standards, Environments, and Macros eqnchar(5)NAME
eqnchar - special character definitions for eqn
SYNOPSIS
eqn /usr/share/lib/pub/eqnchar filename | troff options
neqn /usr/share/lib/pub/eqnchar filename | troff options
DESCRIPTION
The eqnchar command contains nroff(1) and troff(1) character definitions for constructing characters that are not available on the Graphic
Systems typesetter. These definitions are primarily intended for use with eqn(1) and neqn(1). It contains definitions for the following
characters:
To view the special characters, see the online man page on docs.sun.com or a print copy.
A table that shows the nroff and troff character definitions used by eqn
FILES
/usr/share/lib/pub/eqnchar
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWdoc |
+-----------------------------+-----------------------------+
SEE ALSO eqn(1), nroff(1), troff(1), attributes(5)SunOS 5.10 12 Jul 2002 eqnchar(5)
In this following command:
awk 'BEGIN{ORS=""}1'
what does '1' signifies that comes after closing curly brace '}' of awk? I guess, it does not mean 'first occurrence' because I verified that.
And, pls tell me how to override or suppress awk's field variables like $1, $2.. by positional... (7 Replies)
Hi everyone,
I read some shell script code,then I have some issue.
the following code.
let "t1 = ((5 + 3, 7 - 1, 15 - 4))"
echo "t1 = $t1"
t1=11
Here t1 is set to the result of the last operation.why? (3 Replies)
Hi,
I am having the following doubts on awk. Please clarify for me.
a) What does it mean?
awk '$1=$1' and how does it change if I append FS="" to the above code?
b) What if I use awk -vFS="\n" (i.e) setting (input) field separator to newline char, then what will be the value of $0,... (6 Replies)