登录
首页 » 操作系统 » 书  名: unix和shell程序设计权威教程 出 版 社: 清华大学出版社 作  者: [美]佛努丹,吉尔伯格著 本书介绍了unix操作系...

书  名: unix和shell程序设计权威教程 出 版 社: 清华大学出版社 作  者: [美]佛努丹,吉尔伯格著 本书介绍了unix操作系...

于 2022-07-12 发布 文件大小:13.75 MB
0 136
下载积分: 2 下载次数: 1

代码说明:

书  名: unix和shell程序设计权威教程 出 版 社: 清华大学出版社 作  者: [美]佛努丹,吉尔伯格著 本书介绍了unix操作系统和shell编程两个部分的知识。前一部分全面讲解了unix操作系统,包括unix操作系统、vi和ex编辑器、文件系统与文件操作权限、以及各种unix实用程序;后一部分深入介绍了各种类型的unix shell编程,涵盖了korn shell、c shell等主要的shell类型。本书采用可视化讲解方法,全书包含大量的图、表、代码清单、脚本和代码示例,可有效帮助读者理解所介绍的内容;各章章末还配备了相应的复习题、练习题和上机实习等资料,以帮助读者巩固所学的知识。 -Title : unix shell design and authoritative guide publishers : Tsinghua University Press Author : [U.S.] Naodan Dover, Jierbage book, the book on the unix operating system and shell programming two parts of the knowledge. First part of a comprehensive account of unix operating systems, including unix operating system, and ex vi editor. file system and file manipulation authority, and various unix utilities; latter part of the in-depth briefings on the various types of unix shell programming, covering the korn shell. c shell, and other major type of shell. The book on the visual method, the book contains a large number of graphs, charts, code lists, scripts and code examples, ca

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 、课设内容及步骤 1. 消化课设算法思想及样本程序 给出对应模块(函数)的流程图 2. 编制 建立、删除、打开、关闭、读、写 函数 3. 准备调...
    、课设内容及步骤 1. 消化课设算法思想及样本程序 给出对应模块(函数)的流程图 2. 编制 建立、删除、打开、关闭、读、写 函数 3. 准备调试数据(至少两个用户,若干文件),能实施多个命令操作 4. 上机编辑、编译源程序,并进行调试 5. 利用准备好的调试数据,运行测试程序, 观察运行结果,并作记录和分析 -, Class-based content and Step 1. Digest algorithm based lesson ideas and sample program are given the corresponding module (function) of the flow chart 2. Prepared to establish, delete, open, closed, read, write, function 3. Ready debugging data (at least two users, a number of documents), to implement a number of commands to operate 4. on the machine to edit, compile source code, and debugging 5. preparation good use of debugging data, run test procedures, observing the results, and for recording and analysis
    2022-02-09 14:21:26下载
    积分:1
  • Orange' s: an operating system implementation (source code attached to the bo...
    Orange s:一个操作系统的实现(书附源码)readme.rar-Orange" s: an operating system implementation (source code attached to the book) readme.rar
    2022-08-17 14:20:28下载
    积分:1
  • source code of Stanford iPhone course, demo of how to use multitouch
    Stanford iPhone课程配套源码,介绍multitouch 的实现方法。-source code of Stanford iPhone course, demo of how to use multitouch
    2022-04-08 04:20:10下载
    积分:1
  • MAC OSX 下cocoa framwork程序开发示例,xcode
    MAC OSX 下cocoa framwork程序开发示例,xcode-MAC OSX program development under the cocoa framwork example, xcode
    2022-04-27 08:39:26下载
    积分:1
  • 惠普公司bios完整源代码大机密!
    惠普公司bios完整源代码大机密!-HP bios integrity of the source code confidential big!
    2022-01-24 18:01:16下载
    积分:1
  • 此文档提供了一些IBM大型机AIX的命令,对于AIX入门来说是有一定帮助的。...
    此文档提供了一些IBM大型机操作系统AIX的命令,对于AIX入门来说是有一定帮助的。-This document provides a number of IBM mainframe operating system command AIX for AIX is a certain entry help.
    2022-06-30 04:46:40下载
    积分:1
  • Many want to use their own and the sequence to control their own computer, here...
    很多的都想用自已的和序控制自己的电脑,这里有一些常用函数,希望对大家有用-Many want to use their own and the sequence to control their own computer, here are some commonly used functions, in the hope that useful to everybody
    2022-09-12 02:30:03下载
    积分:1
  • DOS
    DOS - ç ,它的内核也是FreeDOS的内核。并在此基础上进行了一定的修改,使其更加实用。 FreeDOS的是项目设计 提供替代到MS - DOS,PC的DOS的和DR - DOS的自由 。-DOS-C started in 1988 as an experiment in writing device drivers in C for Microsoft s MS-DOS. Both block and character device drivers were written, along with special C data structures to match the MS-DOS request packet. It was then recognized that using the same techniques, an operating system could be written that would take advantage of the C language features and would require much less time to develop than the traditional assembly language techniques. Although UNIX had proven this earlier, it was not tried with a traditional pc operating system. At this time, a minimal operating system using the device drivers written earlier along with a new 8086 interrupt API was developed. It was called XDOS and proved to be a functional operating system. This new operating system was used to develop booting techniques and a C library SDK was dev
    2023-09-06 14:00:04下载
    积分:1
  • 模拟一个页式虚拟存储,用FIFO和LRU置换算法,计算所发生的缺页次数。
    1、模拟一个页式虚拟存储系统,用FIFO和LRU置换算法,计算所发生的缺页次数。每个进程在内存占有3页数据区,刚开始时数据区为空。有以下访问数据页序列:5  0  1  0  2  0  1  4  0  2  5  1  2  3  5   (测试数据)请分别模拟2、实现过程:1) 内存分配:给进程分配一定的物理块数,由用户输入物理块数,用数组元素模拟物理块。2) 由文件读入页面访问序列,用数组保存。3) 将要访问的页面依次调入内存,分配到物理块中,形成页框表。其表项号即物理块号(数组元素下标),将页号放入数组相应位置。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-02-07 13:05:33下载
    积分:1
  • 排序算法
    操作系统排序算法-operating system Sorting Algorithm
    2022-04-08 20:23:06下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载