当前位置:  技术问答>linux和unix

编写 的 minishell

    来源: 互联网  发布时间:2016-07-16

    本文导语:  大家好,我初学shell,这是我自己编写的minishell模拟shell的功能,有些地方缺了一些功能,大家能帮我补上并且修正一些错误吗? ////////////////////////////////////////////////////////////////////////////////////// #define MAX_ARGS 64 #def...

大家好,我初学shell,这是我自己编写的minishell模拟shell的功能,有些地方缺了一些功能,大家能帮我补上并且修正一些错误吗?

//////////////////////////////////////////////////////////////////////////////////////

#define MAX_ARGS 64
#define MAX_ARG_LEN 16
#define MAX_LINE_LEN 80
#define LINE_LEN 80
#define MAX_PATHS 64
#define MAX_PATH_LEN  96

#define WHITESPACE " .,tn"

struct command_t
{
char *name;
int argc;
char *argv[MAX_ARGS];
};

#include 
#include 
#include 

char *lookupPath(char **, char **);
int parseCommand(char *, struct command_t *);
int parsePath(char **);
void printPromt();
void readCommand(char *);

int main()
{
int i;
int pid;
char cmdLine[MAX_LINE_LEN];
struct command_t command;

char pathv[];
parsePath(pathv);// get directory paths from PATH


while(true)
{
printPromt();

readCommand(commandLine);
//read the command line and parse it
parseCommand(commandLine,&command);
//get the full path name for the file
command.name = lookupPath(command.argv, pathv);
if(command.name == NULL)
{
printf("error getting the name n");
contiune;
}
//create a child and execute the command
if((pid= fork()) ==0)
execv(command.name, command.argv);
//wait for the child to termimate
if(wait(NULL) > 0) 
    printf("Process[%d]: Parent detects terminating child n", getpid());

}

printf("nn miniShell terminating succesfullyn");
return 0;

  
    

}


void printPrompt()
{
string promptString = ...;
printf("%s", promptString);
}

int parsePath(char *dirs[])
{
char *pathEnvVar;
char *thePath;

for(int i =0; iargv[argc] = strsep(clPtr, WHITESPACE)) != NULL) {
        cmd->argv[++argc] = (char *) malloc(MAX_ARG_LEN);
    }


    cmd->argc = argc-1;
    cmd->name = (char *) malloc(sizeof(cmd->argv[0]));
    strcpy(cmd->name, cmd->argv[0]);

    return  1;
}





|
友情uP

|
先mark,等会来看

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 编写 linux shell 有什么好的编写工具呢?
  • VB编写的DLL不能被JAVA调用,用C将VB编写的DLL包装起来,做成一个新的DLL;用C编写的DLL可以被JAVA调用,用JAVA再进行一层的包装,因为JAV
  • 用Qt3.1.4编写的程序,如何加入自己编写的另外一个动态库呀?诚恳指教!!
  • 如图 scsi <---> scsi controller <---> pci <---> cpu 如果我想对scsi编写驱动我该对哪个部分编写?
  • 用什么工具编写JSP,可以象用InterDev编写ASP一样方便快捷?
  • 编写程序如编写人生,有人和我的意见相同吗?
  • 请问用jsp编写程序,非要编写代码么?有没有什么象fontpage2000那样的工具,能够生成一些固定模板的工具?就是说不用全部都写的工具。望
  • 用jsp编写web程序到底和java serverlet编写web程序有和区别
  • socket中,从client端(用java编写的)传到server端(用c编写的)的字符串为何总多一个ASCII码为10的字符呀?
  • 如何用java编写一个NT平台下的标准服务?
  • 关于用vj编写sniffer一问。
  • Linux下如何编写脚本文件
  • java能不能编写单独运行的程序?
  • Linux有没有类似bat文件,如何编写。
  • 用JAVA编写COM组件
  • 关于版本和bug管理的rule(规则)的编写
  • 在windows下可以用Code::Blocks编写linux程序吗?
  • 函数互相调用时Makefile编写
  • linux下用java编写邮箱客户端程序与在windows下有什么不同??
  • AIX下如何编写批处理命令和计划任务


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3