搜索资源列表
shell
- 完成linux下的shell功能。 实现自己的shell,实现了pipe,进程调度等功能。以及后台程序的显示。-implemented the shell in linux . with the technology pipe , scheduled of processus.
myshell
- 应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;-Application of UNIX s fork () system call,
pipe.c
- Linux下管道通信,用管道一端用shell执行命令,在另一端读取命令结果-Linux, pipe communication with the pipeline one end of the shell to execute command to read the results of the command at the other end
pipe-cmd-shell
- 使用管道来进行进程之间通讯的例子。本例演示了如何使用管道来和cmd.exe进程通讯。-This example demonstrates how to use pipe to communicate with the "cmd.exe" process.
lab
- Shell解释程序,用于实现unix下命令的解释执行,后台处理,管道定向等功能。-Shell interpreter, under the command used to implement the interpretation of the implementation of unix, background processing, pipe orientation and other functions.
virualDOS
- 用PIPE重定向技术,将命令从控制台输入/输出-this programe use pipeIO redirect to control win32 shell
01051312.tar
- 应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行 -With C++ Prepared Linux myshell, support the redirect and pipe symbols, support for CD command r
ivi_ls
- 目的: 1、应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符; 接受和分析命令行(滤去无效的空格、tab符号以及换行符等); 执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;
Assignment3
- The programme implement a simple shell. It could execute a command, having pipe, redircting, forward a background process and background a foreground process and so on. It is implemented using recursive.
myshell2
- A simple shell with pipe have a try
ASK_Shell
- Tiny_Shell 0.1 (普通版本)By Anskya 某天精神好了一点的时候写的,使用KOL+删除多余资源+清除PE重定位表+FSG压缩体积只有3k. 感谢那些提供Code和教程的GG and JJ们~~ ^_^~部分代码直接翻译C的shell Tiny_Shell.dpr 工程时最简单的shell采用匿名单管道设计,本来打算不用管道直接写的,但是怕连目录都无法显示所以还是用了单管道,有个BUG-很明显的那种-就是,输入命令看不见但是可以运行,有兴趣自己改成双管道就可以
Linux
- linux系统管理,shell、socket、pipe、queue、semphora-linux
pp
- Unix课程作业。 使用fork(), exec(), dup2(), pipe() ,open()系统调用完成与下列shell命令等价的功能。 grep –v usr < /etc/passwd | wc –l > result.txt -An assignment in UNIX course. Using fork(), exec(), dup2(), pipe(), open() system calls to do the same function of
simShell
- 一个简单的shell,有管道,重定向等功能都已经实现-a simple shell,it has implemented pipe and redirection.
CmdService
- 基于服务的 0管道 实现cmd she-0 Pipe, a cmd shell based on Windows Service
shell.tar
- minix shell编程,实现了管道,后台运行,历史,重定向-minix shell , pipe ,background ,history,redir
shell_pipe
- 这是两个简单木马的源程序,单双匿名管道远程获取Shell cmd.-These are two simple trojan source, single and double pipe remote anonymous access to Shell cmd.
shell-pipe.c.tar
- linux进程间通信,使用的是pipe,主要是实现shell命令的管道通信。-linux ipc
shell
- 实现了mini-shell功能,可以在程序中输入类似于终端的命令,程序会执行命令并输出结果,支持多命令,管道连接,支持输入输出重定向,-Realize mini-shell function, just like terminal, have used pipe and input & output redirection
HW2
- This program is to give you practice in the use of UNIX functions fork() and pipe() and to implement message communication between processes. In this program you will implement a simple UNIX shell in C. The shell reads a command line from the input,