在命令行中识别分离>与<
用C语言写shell时,想要实现bash style的重定向功能,但是不知道当语句间没有空格时,怎么分离出<与>。fgets(command, sizeof(command), stdin);
token=strtok(command," ");
int i=0;
while( token != NULL ) {
printf( "%s\n", token );
i++;
token = strtok(NULL, " ");
}
但这只能按照空格将command中各部分分开,识别不了>或<
假如command为cat<1.txt>2.txt,如何能分成以下5个部分呢?
cat < 1.txt > 2.txt 可以使用strchr函数来查找字符串中的特定字符,然后将字符串分成相应的部分。以下是一个可能的实现:
fgets(command, sizeof(command), stdin);
char *input_redirect = strchr(command, '<');
char *output_redirect = strchr(command, '>');
char *command_name = strtok(command, " \n");
if (input_redirect) {
*input_redirect++ = '\0';
char *input_file = strtok(input_redirect, " \n");
// do something with input_file
}
if (output_redirect) {
*output_redirect++ = '\0';
char *output_file = strtok(output_redirect, " \n");
// do something with output_file
}
// do something with command_name
这个实现首先使用strchr函数查找输入重定向符号“<”和输出重定向符号“>”。然后,它将命令字符串分成三个部分:命令名称、输入重定向文件名和输出重定向文件名。对于每个重定向文件名,它使用strtok函数将其分离出来。最后,您可以在代码中使用这些部分来执行相应的操作。
页:
[1]