当前位置:
首页
资源下载

搜索资源 - fork() and pipe() implementation
搜索资源列表
-
1下载:
应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;-Application of UNIX s fork () system call,
-
-
0下载:
目的:
1、应用UNIX的fork()等系统调用,编写一个c程序具有以下功能:
a) 实现Shell的基本功能,包括有:打印提示符;
接受和分析命令行(滤去无效的空格、tab符号以及换行符等);
执行命令(要有出错处理;输入exit或者bye退出);返回父进程;
b) 处理后台程序(不需要wait)
c) 处理多行命令(分析命令行中的‘ ’并处理之)
d)应用 dup(), pipe()系统调用具有输入输出重定向以及管道功能;
-
-
0下载:
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,
-