gpt4 book ai didi

c - 我怎样才能扩展我的功能来也有 cd 命令?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:15:56 24 4
gpt4 key购买 nike

我正在用 C 编写一个小的 shell 作为学习 linux 和 C 的练习。现在我可以执行自定义命令和退出命令,但我不能执行内置的 CD 命令,因为我不知道如何将它分成两部分(cd 命令和要 CD 到的目录的名称)。

所需的功能是我的程序应该接受带有目录参数的 cd 命令。我可以使用命令行参数来完成,但我不知道如何以当前形式进行。怎么做到的?

#include <sys/stat.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <dirent.h>
#include <errno.h>
#include <stdarg.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/wait.h>

#define BUFFER_LEN 1024
#define BUFFERSIZE 1024


int mystrcmp(char const *, char const *);


void err_syserr(char *fmt, ...)
{
int errnum = errno;
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
if (errnum != 0)
fprintf(stderr, "(%d: %s)\n", errnum, strerror(errnum));
exit(EXIT_FAILURE);
}
int main() {
char line[BUFFER_LEN];
char* argv[100];
char* path= "/bin/";
char progpath[20];
int argc;
size_t length;
char *token;
int i=0;
int pid;
while(1) {
i = 0;
printf("miniShell>> ");

if(!fgets(line, BUFFER_LEN, stdin)) {
break;
}
length = strlen(line);
if (line[length - 1] == '\n') {
line[length - 1] = '\0';
}
if(strcmp(line, "exit")==0) {
break;
}
if(strcmp(line, "cd")==0) {
/*printf("change directory to %s\n", argv[2]);
chdir(argv[2]);*/
}

token = strtok(line," ");

while(token!=NULL) {
argv[i]=token;
token = strtok(NULL," ");
i++;
}
argv[i]=NULL;

argc=i;
for(i=0; i<argc; i++) {
printf("%s\n", argv[i]);
}
strcpy(progpath, path);
strcat(progpath, argv[0]);

for(i=0; i<strlen(progpath); i++) {
if(progpath[i]=='\n') {
progpath[i]='\0';
}
}
pid= fork();

if(pid==0) {
execvp(progpath,argv);
fprintf(stderr, "Child process could not do execvp\n");

} else {
wait(NULL);
printf("Child exited\n");
}

}
return (0);
}

int mystrcmp(char const *p, char const *q)
{
int i = 0;
for(i = 0; q[i]; i++)
{
if(p[i] != q[i])
return -1;
}
return 0;
}

int cd(char *pth) {
char path[BUFFERSIZE];
char cwd[BUFFERSIZE];
char * return_value;
int other_return;
strcpy(path,pth);

if(pth[0] != '/')
{
return_value = getcwd(cwd,sizeof(cwd));
strcat(cwd,"/");
strcat(cwd,path);
other_return = chdir(cwd);
} else {
other_return = chdir(pth);
}
printf("Spawned foreground process: %d\n", getpid());
return 0;
}

最佳答案

使用strpbrkstrsep将您的输入拆分为以空格分隔的标记,然后在第一个标记上使用 strcmp 并将其余标记用作参数。

This answer to a related question has an example , 和 here are some notes on portability .

关于c - 我怎样才能扩展我的功能来也有 cd 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30163185/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com