Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

miscellaneous(7) [bsd man page]

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

INTRO(3)						     Linux Programmer's Manual							  INTRO(3)

NAME
intro - Introduction to library functions DESCRIPTION
Section 3 of the manual describes all library functions excluding the library functions (system call wrappers) described in section 2, which implement system calls. Many of the functions described in the section are part of the Standard C Library (libc). Some functions are part of other libraries (e.g., the math library, libm, or the real-time library, librt) in which case the manual page will indicate the linker option needed to link against the required library (e.g., -lm and -lrt, respectively, for the aforementioned libraries). In some cases, the programmer must define a feature test macro in order to obtain the declaration of a function from the header file speci- fied in the man page SYNOPSIS section. (Where required, these feature test macros must be defined before including any header files.) In such cases, the required macro is described in the man page. For further information on feature test macros, see feature_test_macros(7). CONFORMING TO
Certain terms and abbreviations are used to indicate Unix variants and standards to which calls in this section conform. See standards(7). NOTES
Authors and Copyright Conditions Look at the header of the manual page source for the author(s) and copyright conditions. Note that these can be different from page to page! SEE ALSO
intro(2), errno(3), feature_test_macros(7), libc(7), standards(7) COLOPHON
This page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2010-09-10 INTRO(3)
Man Page

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk miscellaneous doubts

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)
Discussion started by: royalibrahim
7 Replies

2. Shell Programming and Scripting

Miscellaneous operators

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)
Discussion started by: luoluo
3 Replies

3. Shell Programming and Scripting

Awk miscellaneous doubts

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)
Discussion started by: royalibrahim
6 Replies