UNIX Shell programmingThis edition has been revised and updated to guide computer programmers through the intricacies of writing efficient and effective Unix shells. It contains expanded examples of Unix shell scripts and covers all aspects of shell commands, syntax and control structures.
计算机基础知识方面的读书笔记系列之一,参考书:《Learning the Bash Shell - Unix Shell Programming》 什么是Unix? Unix是一种计算机操作系统,诞生于上个世纪70年代,基于最初的Unix,产生了很多的操作系统分支,其中就包括著名的Linux系统。 Linux被创造于1991年,如果对Linux还是很陌生的话,Android应该更广为人知,Andro...
SHELL PROGRAMMING Chapter Objectives The meaning of variables and different types of shell variables Writing shell scripts Executing shell scripts How to make shell scripts interactive using the read command Positional parameters, their usage to read command line arguments and their manipulation The exit...
本书是Unix Shell Programming经典畅销图书的全新升级版本,遵循了上一版的写作手法,并以POSIX标准Shell为平台,讲解了在Shell编程环境中编写程序的方法,以充分利用UNIX和类UNIX操作系统的潜在性能。 本书首先快速回顾了UNIX的各种实用工具,然后讲解了在Shell环境中编写、调试Shell脚本,以及理解其工作方式的所有内容。本书囊...
《UNIX Linux OS X中的Shell编程 第4版》是经典图书Unix Shell Programming时隔15年之后的全新升级版本,全面讲解了如何在POSIX标准Shell环境中开发程序,以充分发挥UNIX和类UNIX操作系统的潜在功能。《UNIX Linux OS X中的Shell编程 第4版》共分为14章,其内容涵盖了Linux/UNIX的基础知识,Shell的概念、工作原理和运行...
這篇文章的主題是 UNIX Shell Programming . 閱讀這篇文章須要一點 基礎, 包括 : 對 UNIX 的命令要有一點認識 , 尤其是常用 , 重要的 命令. 此外 , 你也必需會在 UNIX 上使用 editor , 像 vi , joe 或 emacs 等 ... 當然 , 假如你有寫程式的經驗 , 那麼 UNIX Shell Programming...
原作名:Linux and UNIX Shell Programming 译者:徐炎/张春萌 出版年:2000-6 页数:357 定价:38.00元 装帧:平装 ISBN:9787111080411 豆瓣评分 7.9 111人评价 5星 28.8% 4星 49.5% 3星 18.9% 2星 2.7% 1星 0.0% 评价: 写笔记 写书评 加入购书单
Designed as one of the first true textbooks on how to use the UNIX operating system and suitable for a wide variety of UNIX-based courses, UNIX and Shell Programming goes beyond providing a reference of commands to offer a guide to basic commands and shell programming. Forouzan/Gilberg begin ...
LearningthebashShell:UnixShellProgramming(Ina Nutshell(O'Reilly)) Language:English Category:Unix Pages:354 Publisher:O'ReillyMedia;ThirdEdition edition(April5,2005) ISBN:978-0596009656 Format:PDF/Kindle/ePub Size:7.88MB O'Reilly'sbestsellingbookonLinux's ...
shell 是一个命令解释器,读取用户输入,然后执行命令,用户有时通过终端shell,有时通过文件(shell脚本)向shell进行输入,常见的shell如下所示 文件和目录: unix文件系统是目录和文件组成的一种层次结构,当创建新目录时会自动创建两个文件名, .和.. ,其中点指向当前目录,点点指向父目录,在最高层次的根目录中,.和.....