注冊(cè) | 登錄讀書(shū)好,好讀書(shū),讀好書(shū)!
讀書(shū)網(wǎng)-DuShu.com
當(dāng)前位置: 首頁(yè)出版圖書(shū)科學(xué)技術(shù)計(jì)算機(jī)/網(wǎng)絡(luò)操作系統(tǒng)UNIXUNIX編程環(huán)境(英文版)

UNIX編程環(huán)境(英文版)

UNIX編程環(huán)境(英文版)

定 價(jià):¥59.00

作 者: (美)Brian W.Kernighan Rob Pike 著
出版社: 人民郵電出版社
叢編項(xiàng):
標(biāo) 簽: UNIX Solaris 操作系統(tǒng)/系統(tǒng)開(kāi)發(fā) 計(jì)算機(jī)/網(wǎng)絡(luò)

購(gòu)買這本書(shū)可以去


ISBN: 9787115302434 出版時(shí)間: 2013-02-01 包裝: 平裝
開(kāi)本: 16開(kāi) 頁(yè)數(shù): 357 字?jǐn)?shù):  

內(nèi)容簡(jiǎn)介

  《UNIX編程環(huán)境(英文版)》系UINX編程領(lǐng)域內(nèi)的經(jīng)典暢銷書(shū)。作者本著“授之以漁”的態(tài)度,不僅向讀者介紹了UNIX系統(tǒng)編程的基本技巧及編程規(guī)范,更是將UNIX的編程哲學(xué)融入其中,以幫助讀者更加深刻地理解UNIX系統(tǒng)?!禪NIX編程環(huán)境(英文版)》的主要內(nèi)容包括UNIX系統(tǒng)基本操作、文件系統(tǒng)、Shell編程、過(guò)濾器、標(biāo)準(zhǔn)I/O庫(kù)編程、系統(tǒng)調(diào)用、程序開(kāi)發(fā)工具、文檔準(zhǔn)備工具等?!禪NIX編程環(huán)境(英文版)》適合UNIX系統(tǒng)的初學(xué)者以及UNIX系統(tǒng)編程的愛(ài)好者閱讀。

作者簡(jiǎn)介

  Brian W. Kernighan是貝爾實(shí)驗(yàn)室計(jì)算科學(xué)研究中心高級(jí)研究人員,著名的計(jì)算機(jī)科學(xué)家。他參加了UNIX系統(tǒng)、C語(yǔ)言、AWK語(yǔ)言和許多其他系統(tǒng)的開(kāi)發(fā),同時(shí)出版了許多在計(jì)算機(jī)領(lǐng)域具有影響的著作,包括《TheElements of Programming Style》、《The Practice of Programming》等。 RobPike,目前谷歌公司最著名的軟件工程師之一,曾是貝爾實(shí)驗(yàn)室Unix開(kāi)發(fā)團(tuán)隊(duì)成員,Plan9操作系統(tǒng)開(kāi)發(fā)的主要領(lǐng)導(dǎo)人,Inferno操作系統(tǒng)開(kāi)發(fā)的主要領(lǐng)導(dǎo)人。他是締造Go語(yǔ)言和Limbo語(yǔ)言的核心人物。

圖書(shū)目錄

CONTENTS1. UNIX for Beginners 
1.1 Getting started 
1.2 Day-to-day use: files and common commands 
1.3 More about files: directories 
1.4 The shell 
1.5 The rest of the UNIX system 2. The File System 
2.1 The basics of files 
2.2 What's in a file? 
2.3 Directories and filenames 
2.4 Permissions 
2.5 Inodes 
2.6 The directory hierarchy 
2.7 Devices 3. Using the Shell 
3.1 Command line structure 
3.2 Metacharacters 
3.3 Creating new commands 
3.4 Command arguments and parameters 
3.5 Program output as arguments 
3.6 Shell variables 
3.7 More on I/O redirection 
3.8 Looping in shell programs 
3.9 bundle: putting it all together 
3.10 Why a programmable shell? 4. Filters 
4.1 The grep family 
4.2 Other filters 
4.3 The stream editor sed 
4.4 The awk pattern scanning and processing language 
4.5 Good files and good filters 5. Shell Programming 
5.1 Customizing the cal command 
5.2 Which command is which? 
5.3 while and until loops: watching for things 
5.4 Traps: catching interrupts 
5.5 Replacing a file: overwrite 
5.6 zap: killing processes by name 
5.7 The pick command: blanks vs. arguments 
5.8 The news command: community service messages 
5.9 get and put: tracking file changes 
5.10 A look back 6. Programming with Standard I/O 
6.1 Standard input and output: vis 
6.2 Program arguments: vis version 2 
6.3 File access: vis version 3 
6.4 A screen-at-a-time printer: p 
6.5 An example: pick 
6.6 On bugs and debugging 
6.7 An example: zap 
6.8 An interactive file comparison program: idiff 
6.9 Accessing the environment 7. UNIX System Calls 
7.1 Low-level I/O 
7.2 File system: directories 
7.3 File system: inodes 
7.4 Processes 
7.5 Signals and interrupts 8. Program Development 
8.1 Stage 1: A four-function calculator 
8.2 Stage 2: Variables and error recovery 
8.3 Stage 3: Arbitrary variable names; built-in functions 
8.4 Stage 4: Compilation into a machine 
8.5 Stage 5: Control flow and relational operators 
8.6 Stage 6: Functions and procedures; input/output 
8.7 Performance evaluation 
8.8 A look back 9. Document Preparation 
9.1 The ms macro package 
9.2 The troff level 
9.3 The tbl and eqn preprocessors 
9.4 The manual page 
9.5 Other document preparation tools 10. Epilog Appendix 1: Editor Summary 
Appendix 2: hoc Manual 
Appendix 3: hoc Listing Index

本目錄推薦

掃描二維碼
Copyright ? 讀書(shū)網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)