CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 Shell编程 搜索资源 - Shell

搜索资源列表

  1. Visual C Windows Shell Programming.zip

    2下载:
  2. 大量windows shell编程例子
  3. 所属分类:Shell编程

    • 发布日期:
    • 文件大小:987.17kb
    • 提供者:
  1. 不错的Shell编程的PPT

    1下载:
  2. 不错的Shell编程的PPT-good Shell Programming PPT
  3. 所属分类:Shell编程

    • 发布日期:2008-10-13
    • 文件大小:8.67mb
    • 提供者:aa
  1. unix下目录递归查询(shell)

    0下载:
  2. shell对指定目录下的指定文件类型进行递归查询所要的内容-shell of a designated directory specified file types recursive query as to the contents
  3. 所属分类:Shell编程

    • 发布日期:2008-10-13
    • 文件大小:935byte
    • 提供者:陈飞飞
  1. 会员管理系统(shell版)

    0下载:
  2. unix下shell编程会员管理系统,包括会员登录,登录后的修改密码,查询会员,增加会员,删除会员等很多操作,都是骼shell所写-under unix shell programming membership management system, including Member Login and login passwords after the revision, members to increase membership, and many other Member delete o
  3. 所属分类:Shell编程

    • 发布日期:2008-10-13
    • 文件大小:11.5kb
    • 提供者:陈飞飞
  1. namespace.虚拟文件夹(Shell Namespace extension)编程的几个例子

    0下载:
  2. 虚拟文件夹(Shell Namespace extension)编程的几个例子,不过程序老了点,是用VC2或VC4编译的,用到了未公开的Windows Shell函数, The hypothesized folder (Shell Namespace extension) programs several examples, but the procedure was old, was translates with VC2 or VC4, with not public Windows S
  3. 所属分类:Shell编程

    • 发布日期:2016-01-26
    • 文件大小:448.61kb
    • 提供者:
  1. shell

    0下载:
  2. shell程序实现下列功能: (1)解析用户提交的命令行;按照环境变量搜索目录系统;执行命令。 (2)执行外部程序命令,命令可以带参数,可提交后台命令(如ls &); (3)提供fg、bg、cd、history、exit等内部命令。 (3)提供管道和输入输出重定向。 (4)提供作业控制功能,包括打印作业的清单,改变当前运行作业的前台/后台状态,以及控制作业的挂起、中止和继续运行。 -Design a shell
  3. 所属分类:Shell api

    • 发布日期:2017-03-24
    • 文件大小:14.04kb
    • 提供者:zhanghonglang
  1. shell

    1下载:
  2. 本实验完成了一个shell命令解释器,实现了shell的解释命令功能,实现了重定向功能和多管道、后台运行等功能。具体功能描述如下: 1)解释器的命令格式为 cmd1[<infileName][|cmd2][|cmd3]…[|cmdn][>or>>outfileName][&] 2)cmdi为命令名+参数形式的命令,<为输入重定向,后跟输入重定向文件名infileName;>或>>后跟输出重定向文件名,输出内容将写入
  3. 所属分类:Shell编程

    • 发布日期:2013-10-24
    • 文件大小:21.82kb
    • 提供者:souven
  1. shell

    1下载:
  2. 自制的一个shell程序,实现cd,dir,clr,help,quit,if..then等命令-Made a shell program to realize cd, dir, clr, help, quit, if .. then other commands
  3. 所属分类:Shell api

    • 发布日期:2015-08-11
    • 文件大小:3kb
    • 提供者:llm
  1. Windows Shell Programming

    1下载:
  2. 大量windows shell编程例子
  3. 所属分类:Shell api

    • 发布日期:2017-11-09
    • 文件大小:987.17kb
    • 提供者:站长
  1. Shell

    0下载:
  2. 基本上shell分两大类:   一:图形界面shell(Graphical User Interface shell 即 GUI shell)   例如:应用最为广泛的 Windows Explorer (微软的windows系列制作系统),还有也包括广为人知的 Linux shell,其中linux shell 包括 X windows manger (BlackBox和FluxBox),以及功能更强大的CDE、GNOME、KD、 XFCE。   二:命令行式 shell(Comm
  3. 所属分类:Shell api

    • 发布日期:2017-03-23
    • 文件大小:437.03kb
    • 提供者:grub
  1. shell

    0下载:
  2. shell欣赏是学习脚本的好东西,有很多实用的例子-shell scr ipt to learn to appreciate the good things, there are many practical examples
  3. 所属分类:Shell api

    • 发布日期:2017-04-01
    • 文件大小:241.51kb
    • 提供者:liguanwu
  1. shell

    0下载:
  2. 一个shell脚本语言的实例代码 ,适合shell编程的初学者的学校借鉴。-It is a shell program test ,and for new student to study
  3. 所属分类:Shell api

    • 发布日期:2017-03-31
    • 文件大小:5.24kb
    • 提供者:shiqun
  1. SHELL-guide

    1下载:
  2. 一套学习shell的经典手册,让一个菜鸟变成高手的SHELL手册。-A set of learning the classical shell manual, so that a rookie to become master of the SHELL manual.
  3. 所属分类:Shell api

    • 发布日期:2017-04-03
    • 文件大小:626.22kb
    • 提供者:廖登榜
  1. shell

    0下载:
  2. 实现带参数的简单shell 1、除了系统调用execve,不允许使用其他的exec函数。输入应当允许带多个参数(一行内可以表示),不考虑通配符 (即“*”、“?”、“-”等等)的处理。 2、输入错误命令能提示出错并进入下一轮接收命令状态。 3、可以用Ctrl-C和Ctrl-\结束简单shell的运行。 4、程序运行正确,提示简洁明确。 -Parameters to achieve a simple shell 1, apart from the system call exe
  3. 所属分类:Shell api

    • 发布日期:2017-03-30
    • 文件大小:2.17kb
    • 提供者:Lynne
  1. shell-IP-Changer

    0下载:
  2. shell code to change ip
  3. 所属分类:Shell api

    • 发布日期:2017-04-01
    • 文件大小:3.08kb
    • 提供者:ssdd9258
  1. shell-scripting

    0下载:
  2. Shell scr ipting by Hamish Whittal
  3. 所属分类:Shell api

    • 发布日期:2017-04-07
    • 文件大小:395.35kb
    • 提供者:OZ
  1. Shell

    0下载:
  2. shell脚本语言文字shell脚本语言-shell scr ipting languages shell scr ipting language
  3. 所属分类:Shell api

    • 发布日期:2017-03-30
    • 文件大小:18.1kb
    • 提供者:张刚
  1. shell

    0下载:
  2. 对于学习Shell编程的人来说是一个很好的教程,需要的下载-Shell programming for people to learn is a good tutorial, need to download
  3. 所属分类:Shell api

    • 发布日期:2017-03-30
    • 文件大小:12.88kb
    • 提供者:黎明
  1. Linux-shell

    0下载:
  2. s h e l l编程最烦人的一项工作是调试问题。有一些方法可以借鉴,但是最好能在问题出现前防止大部分错误,为此应遵循以下规则。 本书简单讲解-The most annoying one shell programming is to debug the problem. There are ways to learn, but the problem is best able to prevent most errors before, this should follow the rules
  3. 所属分类:Shell api

    • 发布日期:2017-03-23
    • 文件大小:91.57kb
    • 提供者:侯晨辉
  1. Shell-script

    0下载:
  2. Classic Shell scr ipting内容简介Shell脚本编程(scr ipting)的技巧永远不会过时:它们可以让UNIX充分发挥其真实的潜能-Classic Shell scr ipting Introduction Shell scr ipting (scr ipting) skills will never become obsolete: they can give full play to their true UNIX potential
  3. 所属分类:Shell api

    • 发布日期:2017-06-19
    • 文件大小:28.02mb
    • 提供者:yangdonglin
« 12 3 4 5 6 7 8 9 10 ... 25 »
搜珍网 www.dssz.com