搜索资源列表

  1. MyShell

    0下载:
  2. linux下shell的一个实现源码-under the realization of a source
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:40960
    • 提供者:陈盛荣
  1. cw_shell

    0下载:
  2. 编写自己的SHELL程序myshell.c实现如下功能: (1)、显示提示符“>”。 (2)、用户在此提示符可输入简单的shell命令执行。 (3)、shell命令执行完又回到“>”提示符下。 (4)、在“>”提示符下输入“quit”退出程序-prepare their SHELL myshell.c procedures to accomplish the following functions : (a), ind
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:宏伟
  1. myshell

    0下载:
  2. 实现Shell,能处理命令 cd :改变进程当前路径 pwd :查看进程当前路径 pid:查看当前进程号(getpid()系统调用) logout :退出shell ls [-l] rm [-r] mkdir, mv, cp-achieve Shell, can handle orders cd : the process of change current path pwd : View current p
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:11264
    • 提供者:叶黎
  1. MyShell

    0下载:
  2. 加壳软件,自己练习用的!功能有使用次数和时间限制!没有进行区段合并!对OEP进行了加密处理!-加壳software, used to practice their own! Function using frequency and time constraints! No merger section! Of OEP is encrypted to deal with!
  3. 所属分类:加密解密

    • 发布日期:2024-05-19
    • 文件大小:245760
    • 提供者:
  1. myshell

    0下载:
  2. 几个简单实用的shell程序。它能使你更充分的了解linux下shell编程。-Several simple and practical procedure shell. It gives you a fuller understanding of shell programming under linux.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:38912
    • 提供者:dream.fa
  1. myshell

    0下载:
  2. 自己实现的模拟unix下shell的一些简单功能,包括执行常见的命令,输入输出重定向,多级管道等-To realize his shell under unix simulation of some simple functions, including the implementation of common commands, input and output redirection, multi-stage pipeline, e
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:wupeng
  1. myshell

    0下载:
  2. 应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;-Application
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:4096
    • 提供者:晏珏
  1. myshell

    0下载:
  2. 用C++编写的Linux myshell,支持重定向和管道符号,支持CD命令,供初学者参考-With C++ Prepared Linux myshell, support the redirect and pipe symbols, support for CD command reference for beginners
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:HCY
  1. shell

    0下载:
  2. #include<stdio.h> #include<string.h> #include<limits.h> #include<unistd.h> #include<sys/types.h> #define PROMPT_STRING "[myshell]$" #define QUIT_STRING "exit\n" static ch
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:32768
    • 提供者:李明
  1. MyShell

    0下载:
  2. 实现Linux的Shell基本功能。包括输入输出重定向,管道,等等。-Shell to achieve the basic functions of Linux. Including input and output redirection, pipes, and so on.
  3. 所属分类:Shell编程

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:MSM
  1. MyShell

    0下载:
  2. 一个shell程序可以实现管道,重定向,cd,后台,ls等功能-a simple shell, can achieve a pipeline, redirects, cd, background, and other functions ls
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:30720
    • 提供者:落木
  1. myShell

    0下载:
  2. 一个简单的自制shell程序。面向对象实现。-Made a simple shell program. Object-oriented implementation.
  3. 所属分类:Shell编程

    • 发布日期:2024-05-19
    • 文件大小:14336
    • 提供者:王志斌
  1. myshell

    1下载:
  2. 用纯C语言编写的一个Linux下的Shell,包含tch和bash的基本功能(包含重定向和后台运行),暂时不支持管道。已经在cygwin和Ubantu 7.10下测试通过。 主要包含: makefile 编译生成myshell可执行文件 myshell.c 主函数(涉及程序入口) utility.c 所有功能函数(将近1000行) myshell.h(包含宏定义、结构体声明、库函数的头文件,及utility.c
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-19
    • 文件大小:300032
    • 提供者:Yang
  1. Myshellv0.2

    0下载:
  2. 在myshell v0.1的基础上,增加新的功能:在父进程中接收控制台输入一行字符串,作为用户发出的Linux命令,如ls /usr/*.c <回车>,在创建一个子进程后,子进程通过调用execlp()系统调用,执行这条命令。-In the myshell v0.1 based on adding new features: In the parent process to receive the console input
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:116736
    • 提供者:谢海斌
  1. Myshellv0.3

    0下载:
  2. 在myshell v0.1的基础上,增加新的功能:在父进程中接收控制台输入一行字符串,作为用户发出的Linux命令,如ls /usr/*.c <回车>,在创建一个子进程后,子进程通过调用execlp()系统调用,执行这条命令。-In the myshell v0.1 based on adding new features: In the parent process to receive the console input
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:117760
    • 提供者:谢海斌
  1. Myshell

    0下载:
  2. 在linux下实现的简单shell 实现了变量 通道 重定向等功能-Simple Shell in linux.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:16384
    • 提供者:zhangbo
  1. MyShell

    0下载:
  2. 模仿linux中shell的功能,简单的ls,dir等命令,也包括双管道,输入输出重定向,同时支持shell的定义变量以及变量赋值。同时做了简单的错误输入提示。-Linux in the shell to imitate the function, a simple ls, dir, etc. commands, but also dual-channel input and output redirection, while supp
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:5120
    • 提供者:
  1. myShell

    0下载:
  2. 在ubuntu下自己实现的shell, 可以输入常见的命令。-Ubuntu achieved in under their own shell, you can enter common commands.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:zwj
  1. myshell

    0下载:
  2. 中山大学计算机系操作系统基于linux的实验she-sysu
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-19
    • 文件大小:921600
    • 提供者:刘亦然
  1. myshell

    1下载:
  2. 《操作系统—精髓与设计原理》一书中myshell编程项目,代码写得很清晰,纠错能力很强大,实现了基本的内部命令:cd、dir、help、echo、environ等,以及实现文件重定向、后台处理等功能。附有实验报告。-" Operating system- the essence and principles of design" , a book myshell programming projects, the cod
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-19
    • 文件大小:285696
    • 提供者:david
« 12 3 4 5 »

源码中国 www.ymcn.org