Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • SHELL-guide.rar 一套学习shell的经典手册,让一个菜鸟变成高手的SHELL手册。
  • Linux-Shell-Scripting-Tutorial.rar 介绍Linux shell编程的入门书·
  • Apress.Expert.Shell.Scripting.Jan.2009.rar 2009年图书:精通Shell脚本编程 The book is meant for the intermediate shell coder up to the advanced shell-code hacker, because I don’t explain many basic programming structures. If you’re looking for that type of book, you should look to the resources mentioned ...
  • shell.ActiveXEx.rar 对一些shell操作的封装ActiveXEx 对一些shell操作的封装ActiveXEx
  • shell.rar 这是一个shell程序,模拟unix系统之下的。可以实现unix下的很多命令
  • shell-guide.rar 一篇不错的shell教程,很不错的bash脚本编写教程
  • Linux.Shell.rar linux shell 的实例讲解,还不错
  • shell.rar 本实验完成了一个shell命令解释器,实现了shell的解释命令功能,实现了重定向功能和多管道、后台运行等功能。具体功能描述如下: 1)解释器的命令格式为 cmd1[<infileName][|cmd2][|cmd3]…[|cmdn][>or& ... 条命令。 9)’|’为管道符号,使用|符号隔开的若干条命令之间,前一条命令的输出是后一条命令的输入。 10)自定义命令myname,将输出此Shell的版本信息 11)本解释器命令格式中的简单命令可为所有外部命令和一部分内部命令和自定义命令
  • shell.rar 实现shell 实现内置命令cd、pwd,实现环境变量,输入和输出可以重定向到文件
  • shell.rar 实现带参数的简单shell 1、除了系统调用execve,不允许使用其他的exec函数。输入应当允许带多个参数(一行内可以表示),不考虑通配符 (即“*”、“?”、“-”等等)的处理。 2、输入错误命令能提示出错并进入下一轮接收命令状态。 3、可以用Ctrl-C和Ctrl-\结束简单shell的运行。 4、程序运行正确,提示简洁明确。