- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在创建一个 shell,它可以根据用户在终端上输入的命令执行命令。它还具有历史功能。
现在一切正常。我唯一坚持的部分是,如果用户输入“!!”最近的命令应该执行,如果用户输入“!n”,第 n 个命令应该执行。但是,当我运行它时,当我输入这些命令时没有任何执行。
get_recent_command() 和 search_in_list_for_n() 函数正在返回正确的命令,但是当我将这些函数的结果放在 execvp() 调用中应该位于“args[0]”的位置时,没有任何反应。
不确定。提前致谢!在将命令添加到列表之前,我尝试用 null 终止命令,但它仍然不起作用。我不确定我还能做些什么...在此先感谢您!
注意:从站点重用的链接列表代码:http://www.thegeekstuff.com/2012/08/c-linked-list-example/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#define MAX_LINE 80 //Maximum number of characters for a commandline
struct test_struct
{
char *str;
struct test_struct *next;
};
struct test_struct *head = NULL;
struct test_struct *curr = NULL;
struct test_struct* create_list(char * str)
{
printf("\n creating list with headnode as %s\n",str);
struct test_struct *ptr = (struct test_struct*)malloc(sizeof(struct test_struct));
if(NULL == ptr)
{
printf("\n Node creation failed \n");
return NULL;
}
ptr->str = str;
ptr->next = NULL;
head = curr = ptr;
return ptr;
}
struct test_struct* add_to_list(char * str, bool add_to_end)
{
if(NULL == head)
{
return (create_list(str));
}
if(add_to_end)
printf("\n Adding node to end of list with value %s\n",str);
else
printf("\n Adding node to beginning of list with value %s\n",str);
struct test_struct *ptr = (struct test_struct*)malloc(sizeof(struct test_struct));
if(NULL == ptr)
{
printf("\n Node creation failed \n");
return NULL;
}
ptr->str = str;
ptr->next = NULL;
if(add_to_end)
{
curr->next = ptr;
curr = ptr;
}
else
{
ptr->next = head;
head = ptr;
}
return ptr;
}
struct test_struct* search_in_list(char * str, struct test_struct **prev)
{
struct test_struct *ptr = head;
struct test_struct *tmp = NULL;
bool found = false;
printf("\n Searching the list for value [%s] \n",str);
while(ptr != NULL)
{
if(ptr->str == str)
{
found = true;
break;
}
else
{
tmp = ptr;
ptr = ptr->next;
}
}
if(true == found)
{
if(prev)
*prev = tmp;
return ptr;
}
else
{
return NULL;
}
}
int countList(void)
{
struct test_struct *ptr = head;
int i = 0;
while(ptr != NULL)
{
i++;
ptr = ptr->next;
}
return i;
}
void print_list(void)
{
int i = 1;
int listCount = 0;
struct test_struct *ptr = head;
listCount = countList();
printf("\n -------HISTORY START------- \n");
while(ptr != NULL && i < 11)
{
printf("\n %i %s \n", listCount, ptr->str);
ptr = ptr->next;
i++;
listCount--;
}
printf("\n -------HISTORY END------- \n");
countList();
i = 0;
return;
}
char* get_recent_command(void)
{
int listCount = 0;
int i = 0;
listCount = countList();
if(listCount > 1)
{
struct test_struct *ptr = head;
while(ptr != NULL && i < 1)
{
i++;
ptr= ptr->next;
}
return ptr->str;
}
else
{
printf("No recent commands entered yet\n");
return NULL;
}
}
char* search_in_list_for_n(int n, struct test_struct **prev)
{
int i = 0;
int listCount = 0;
int tempCount = 0;
listCount = countList();
tempCount = countList();
if(listCount >= n)
{
struct test_struct *ptr = head;
struct test_struct *tmp = NULL;
bool found = false;
while(tempCount != n)
{
i++;
ptr = ptr->next;
tempCount--;
}
return ptr->str;
}
else
{
printf("No such command found");
return NULL;
}
}
//Sets up shell function
void shellInput(char userInput[], char *args[], int ampersand);
int main(void)
{
char *str = " ";
char *str2 = " ";
char *str3 = " ";
struct test_struct *ptr = NULL;
int count = 0;
char *args[MAX_LINE/2 + 1]; //Holds individual arguments
int shouldRun = 1; //While loop continues to run if this equals 1
char userInput[MAX_LINE]; //Stores each character from user input
int ampersand; //Represents ampersand from commandline
pid_t pid;
pid_t pid2;
int n;
while(shouldRun)
{
ampersand = 0; //If ampersand equals 1 at any point, the user entered an ampersand, so the parent will run concurrently
printf("\nosh>");
fflush(stdout);
shellInput(userInput, args, ampersand); //Initiates shell
count++;
pid = fork();
if(pid == 0)
{
if (args[1])
{
n = atoi(args[1]);
}
if(!(strncmp(args[0], "history", 7)))
{
print_list();
}
else if(!(strncmp(args[0], "!!", 2)))
{
str = get_recent_command();
printf("str %s", str);
if(execvp(str, args) < 0)
{
printf("execvp failed");
exit(1);
}
else
{
printf("executing...");
fflush(stdout);
execvp(str, args);
}
}
else if(!(strncmp(args[0], "!", 1)))
{
str3 = search_in_list_for_n(n,NULL);
printf("search_in_list_for_n: %s", search_in_list_for_n(n,NULL));
execvp(str3, args);
}
else
{
printf("executing...");
fflush(stdout);
execvp(args[0], args);
}
exit(0);
}
else if(ampersand == 0)
{
wait(&pid);
}
}
free(str);
return 0;
}
void shellInput(char userInput[], char *args[], int ampersand)
{
int commLength; //Length of command
int i; // Index for loop
int inputIndex = -5; //Represents the first index of each command parameter
int ParamCount = 0; //Number of parameters on command line (number of arguments)
char str [MAX_LINE];
char str2 [MAX_LINE];
char test = ' ';
char* temp;
char testing [MAX_LINE];
testing [0] = '\0';
char *strTest = " ";
strncpy(str2, &testing[0], 1);
//Reads user input from command line
commLength = read(0, userInput, MAX_LINE);
for(int k = 0; k < commLength; k++)
{
strncpy(str, &userInput[k], 1);
strcat(str2, str);
}
strTest = (char *)malloc(MAX_LINE + 1);
strcpy(strTest, str2);
strTest[MAX_LINE] = '\0';
add_to_list(strTest, false);
for(int q = 0; q < commLength; q++)
{
printf("%c",userInput[q]);
}
//if user presses ctrl + d, the shell will exit
if (commLength == 0)
{
exit(0);
}
//Loops through every character in the userInput array
for(i = 0; i < commLength; i++)
{
//Checks a character from userInput array
switch(userInput[i])
{
//If there is a space character, the command parameter upto that space will be stored into args
case ' ':
if(inputIndex != -5)
{
args[ParamCount] = &userInput[inputIndex]; //stores parameter into args array
ParamCount++; //Increments number of arguments
inputIndex = -5; //Resets index for the next command
userInput[i] = '\0'; //Creates a C string
}
break;
//If there is a new line character no more parameters will be stored
case '\n':
if(inputIndex != -5)
{
args[ParamCount] = &userInput[inputIndex]; //Last parameter is stored
ParamCount++;
userInput[i] = '\0';
args[ParamCount] = NULL;//Since this was the last command, everything after should be null
}
break;
//If there is a character besides space or newline (usually should be)
default:
if(inputIndex == -5)
{
inputIndex = i; //This occurs everytime a new command parameter has been found
}
if(userInput[i] == '&')
{
ampersand = 1;
userInput[i-1] = '\0'; //Makes the parameter before the ampersand into a C string
}
//*note*: This default case will not carry out a function inbetween when the first command parameter has been found and until the next is found
}
}
//Prints the arguments
for(i = 0; i <= ParamCount; i++)
{
printf("args [%i]: %s\n", i, args[i]);
}
}
最佳答案
您缺乏信息将使我做出以下假设:
test_struct.str
引用一个完整的命令,例如“ls -la”
,“ps u”
。当您将 print_recent_list()
传递给 execvp
时,您传递的是整个命令,包括其参数。快速浏览一下手册页就会发现 execvp()
的第一个参数“指向标识新进程镜像文件的路径名”。本质上,您正在寻找一个名为 ls -la
的进程,这是没有意义的;该命令只是ls
。您需要重新标记从 print_recent_list()
返回的字符串,将 args
替换为该标记化的结果,然后调用 print_recent_list(args[0] , args)
就像您在 else
案例中一样。
(你在作业到期前一天问这个问题就结束了!我不会告诉诺克斯博士)。
关于c - 如何在 if-else 语句中使用多个 execvp 调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21749500/
为了让我的代码几乎完全用 Jquery 编写,我想用 Jquery 重写 AJAX 调用。 这是从网页到 Tomcat servlet 的调用。 我目前情况的类似代码: var http = new
我想使用 JNI 从 Java 调用 C 函数。在 C 函数中,我想创建一个 JVM 并调用一些 Java 对象。当我尝试创建 JVM 时,JNI_CreateJavaVM 返回 -1。 所以,我想知
环顾四周,我发现从 HTML 调用 Javascript 函数的最佳方法是将函数本身放在 HTML 中,而不是外部 Javascript 文件。所以我一直在网上四处寻找,找到了一些简短的教程,我可以根
我有这个组件: import {Component} from 'angular2/core'; import {UserServices} from '../services/UserService
我正在尝试用 C 实现一个简单的 OpenSSL 客户端/服务器模型,并且对 BIO_* 调用的使用感到好奇,与原始 SSL_* 调用相比,它允许一些不错的功能。 我对此比较陌生,所以我可能会完全错误
我正在处理有关异步调用的难题: 一个 JQuery 函数在用户点击时执行,然后调用一个 php 文件来检查用户输入是否与数据库中已有的信息重叠。如果是这样,则应提示用户确认是否要继续或取消,如果他单击
我有以下类(class)。 public Task { public static Task getInstance(String taskName) { return new
嘿,我正在构建一个小游戏,我正在通过制作一个数字 vector 来创建关卡,该数字 vector 通过枚举与 1-4 种颜色相关联。问题是循环(在 Simon::loadChallenge 中)我将颜
我有一个java spring boot api(数据接收器),客户端调用它来保存一些数据。一旦我完成了数据的持久化,我想进行另一个 api 调用(应该处理持久化的数据 - 数据聚合器),它应该自行异
首先,这涉及桌面应用程序而不是 ASP .Net 应用程序。 我已经为我的项目添加了一个 Web 引用,并构建了各种数据对象,例如 PayerInfo、Address 和 CreditCard。但问题
我如何告诉 FAKE 编译 .fs文件使用 fsc ? 解释如何传递参数的奖励积分,如 -a和 -target:dll . 编辑:我应该澄清一下,我正在尝试在没有 MSBuild/xbuild/.sl
我使用下划线模板配置了一个简单的主干模型和 View 。两个单独的 API 使用完全相同的配置。 API 1 按预期工作。 要重现该问题,请注释掉 API 1 的 URL,并取消注释 API 2 的
我不确定什么是更好的做法或更现实的做法。我希望从头开始创建目录系统,但不确定最佳方法是什么。 我想我在需要显示信息时使用对象,例如 info.php?id=100。有这样的代码用于显示 Game.cl
from datetime import timedelta class A: def __abs__(self): return -self class B1(A):
我在操作此生命游戏示例代码中的数组时遇到问题。 情况: “生命游戏”是约翰·康威发明的一种细胞自动化技术。它由一个细胞网格组成,这些细胞可以根据数学规则生存/死亡/繁殖。该网格中的活细胞和死细胞通过
如果我像这样调用 read() 来读取文件: unsigned char buf[512]; memset(buf, 0, sizeof(unsigned char) * 512); int fd;
我用 C 编写了一个简单的服务器,并希望调用它的功能与调用其他 C 守护程序的功能相同(例如使用 ./ftpd start 调用它并使用 ./ftpd stop 关闭该实例)。显然我遇到的问题是我不知
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
在 dos 中,当我粘贴此命令时它会起作用: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://google.
我希望能够从 cmd 在我的 Windows 10 计算机上调用 python3。 我已重新安装 Python3.7 以确保选择“添加到路径”选项,但仍无法调用 python3 并使 CMD 启动 P
我是一名优秀的程序员,十分优秀!