|
Conventions Used In This Book
Prev Preface
Next
Conventions Used In This Book
The term 鈥淯nix鈥 is technically and legally a trademark of the X/Open group, and should
formally be used only for operating systems which are certified to have passed X/Open's
elaborate standards-conformance tests. In this book we use 鈥淯nix鈥 in the looser sense widely
current among programmers, to refer to any operating system (whether formally Unix-
branded or not) that is either genetically descended from Bell Labs's ancestral Unix code or
written in close imitation of its descendants. In particular, Linux (from which we draw most
of our examples) is a Unix under this definition.
This book employs the Unix manual page convention of tagging Unix facilities with a
following manual section in parentheses, usually on first introduction when we want to
emphasize that this is a Unix command. Thus, for example, read 鈥渕unger(1)鈥 as 鈥渢he
鈥榤unger鈥 program, which will be documented in section 1 (user tools) of the Unix manual
pages, if it's present on your system.鈥 Section 2 is C system calls, section 3 is C library calls,
section 5 is file formats and protocols, section 8 is system administration tools. Other
sections vary between Unixes but are not cited in this book. For more, type man 1 man at
your Unix shell prompt (older System V Unixes may require man -s 1 man).
Sometimes we will mention a Unix application (such as yacc, emacs, lex) without a manual-
section suffix. This is a clue that the name actually represents a well-established family of
Unix programs with essentially the same function, and we are discussing generic properties
of all of them. Yacc, for example, stands in not just for yacc itself but for bison and byacc as
well; emacs includes xemacs; and lex also includes flex.
At various points later in this book we'll refer to 鈥榦ld-school鈥 and 鈥榥ew-school鈥 methods. As
with rap music, new-school starts about 1990. In this context, it's associated with the rise of
scripting languages, GUIs, open-source Unixes, and the Web. Old-school refers to the pre-
1990 (and especially pre-1985) world of expensive computers, proprietary Unixes, scripting
in shell, and C everywhere. This difference is worth pointing out because cheaper and less
memory-constrained machines have wrought some significant changes on the Unix
programming style.
Prev Up Next
|