- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试用 C 语言创建一个 shell,但我被困在使内置函数正常运行的点上。
这是我的代码:
int my_fork(char *line, char **env)
{
/*char *line = arguments entered in getline() (like 'ls' for example)*/
/*char **env = copy of the shell environment*/
int i = 0;
/*Get the PID for forking*/
pid_t pid = getpid();
/*Declaration of one string and one array*/
char *path = malloc(sizeof(char) * 100);
char **tmp = malloc(sizeof(char *) * 7);
/* my_str_to_word_array transform a string into an array of word*/
char **arg = my_str_to_word_array(line);
for (int j = 0; j < 30; j++)
tmp[j] = malloc(sizeof(char) * 100);
/*my_getpath() search and found the PATH variable in the environment*/
path = my_getpath(env);
/*Then, we put the different paths in an array (paths are separated by ':')*/
tmp = my_str_to_word_array(path);
for (int j = 0; j < 7; j++) {
/*my_strcat() put a string after another string*/
/*Here, i put the entered command after all the paths*/
my_strcat(tmp[j], "/");
my_strcat(tmp[j], arg[0]);
/*my_putstr() print a string, here, i try to print all the modified paths*/
my_putstr(tmp[j]);
write (1, "\n", 1);
}
/*i fork and exec the command*/
pid = fork();
execve(tmp[i], arg, env);
/*i wait until the child process end*/
wait(&pid);
return (0);
}
输出给我一个段错误信号,我不知道为什么。 Valgrind 没有帮助我,我现在不知道该怎么办......
我遇到的错误是:“访问不在映射区域 0x0 内”。此错误发生在计算字符串长度的函数“my_strlen()”中。我已经搜索了为什么会出现此错误,但我不明白,因为在我的字符串末尾,我肯定有'\0'。
我的_strcat():
char *my_strcat(char *dest, char *src)
{
int i = 0;
int len = my_strlen(dest);
for (; src[i] != '\0'; i++)
dest[len + i] = src[i];
i++;
dest[len + i] = '\0';
return (dest);
}
我的_strlen():
int my_strlen (char *str)
{
int i = 0;
while (str[i])
i++;
return (i);
}
所以,总而言之,我想让内置函数发挥作用,但我在 my_strlen() 中有一个错误,这不是我遇到的唯一错误,但现在,让我们关注这个错误。
最佳答案
my_str_to_word_array():
char **my_str_to_word_array(char *str)
{
int i = 0;
int j = 0;
int m = 0;
int len = my_strlen(str);
char **tmp = malloc(sizeof(char *) * 10);
for (int n = 0; n < 10; n++)
tmp[n] = malloc(sizeof(char) * 50);
while (j < len) {
m = 0;
while ((str[j] == ':') || (str[j] == ' ') || (str[j] == '\n'))
j++;
while ((str[j] != ':') && (str[j] != ' ') && (str[j] != '\n'))
tmp[i][m++] = str[j++];
tmp[i][m + 1] = '\0';
i++;
}
tmp[i] = NULL;
return (tmp);
}
我的获取路径():
char *my_getpath(char **env)
{
int i = 0;
char *tmp = NULL;
int len = 0;
while (my_strncmp(env[i], "PATH=", 5) != 0)
i++;
len = my_strlen(env[i]);
env[i][len + 1] = '\0';
tmp = malloc(sizeof(char) * my_strlen(env[i]));
my_printf("Path found\nLen: %d\n", my_strlen(env[i]));
my_printf("Path: ");
my_putstr(env[i]);
write(1, "\n", 1);
tmp = my_strncpy(tmp, env[i], 5);
return (tmp);
}
my_strncpy():
char *my_strncpy (char *src, int n)
{
int i = 0;
char *dest = malloc(sizeof(char));
int len = my_strlen(src);
for (; n <= len; i++) {
dest[i] = src[n];
n++;
}
dest[i] = '\0';
return (dest);
}
在 getpath() 之后打印的路径给我一个段错误,当我用 valgrind 查看时,它告诉我这是因为 my_strlen()。
但是当我不打印它时,它起作用了,所以我不认为这是因为 my_strlen()。
输出:
Path found
Len: 124
Path: PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/home/tyrone/.local/bin:/home/tyrone/binSegmentation fault (core dumped)
当我看到这个时,我认为它在 my_strncpy 中,但我看不出错误在哪里。
关于c - C 中的 shell : How to execute builtin command with fork() and execve(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49475309/
我正在尝试安装一种用于 TCPDF 的字体。为此,我需要运行附带的命令行实用程序 ttf2ufm。 (包含在 TCPDF 中的 fonts/utils/ttf2ufm 中)但是当我运行它时,出现错误
我是 answering a question并假设 if [ $(command) ]; then ... 总是等同于 if command; then ... 但是,我得到了a couple of
我的package.json定义: ... "scripts": { "start": "node scripts/start.js", "build"
我知道默认的“CTRL+B”Windows 命令可用于显示所有嵌套文件。 是否有显示所有嵌套文件夹的快捷方式? 最佳答案 我怀疑 Total Commander 中是否存在此功能。内置tree实用性对
任何人都可以告诉我,是否有任何可以检测当前运营商名称的AT命令? 我用过AT+COPS? 它返回给我运算符(operator)的数字代码:0,2,40410 然后我使用命令 AT+WOPN = 0,4
我需要将网站托管到 google firebase 托管。 我几乎到处都看过,但钢有问题。 我已安装 npm install --global firebase 还有 npm install -g f
我想要这样的东西 如果(command_not_exists)退出 谁能告诉我如何在 cshell 脚本中实现此功能? 最佳答案 我的问题是使用 where 命令解决的(我尝试使用 which 命令)
通过使用 + 的参数调用它,我可以使 vim 将光标定位在文件的最后一行。 : vi + myfile # "+" = go to last line of file 我怎样才能做到
我想要这样的东西 如果(command_not_exists)退出 谁能告诉我如何在 cshell 脚本中实现此功能? 最佳答案 我的问题是使用 where 命令解决的(我尝试使用 which 命令)
在 cobra 中,我创建了一个命令命令: myapp zip -directory "xzy" -output="zipname" myapp upload -filename="abc" 我想制作
我应用了所有可能的答案,但仍然是同样的问题。 也试过 $this->db->reconnect(); 我的查询没有问题 我的代码: public function GetdistributorsDet
有什么区别: eval echo lala 和: command="echo lala" $command 它们似乎都具有相同的效果,但我可能遗漏了一些东西。此外,如果它们确实具有相同的效果,那么ev
要将命令的输出存储为 sh/ksh/bash 中的变量,您可以执行任一操作 var=$(command) 或 var=`command` 这两种方法有什么区别? 最佳答案 反引号/标记已被弃用,取而代
我想让我的用户根据他的选择以 sudo 和普通用户身份运行。他可以使用 sudo 或普通用户,但如果不使用 sudo,我必须禁用某些功能来消除错误。那么我怎么知道该用户是否给了我 sudo 执行权限?
这个问题已经有答案了: Command substitution: backticks or dollar sign / paren enclosed? [duplicate] (3 个回答) 已关闭
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Command substitution: backticks or dollar sign / paren enc
要将命令的输出存储为 sh/ksh/bash 中的变量,您可以执行任一操作 var=$(command) 或 var=`command` 这两种方法有什么区别? 最佳答案 反引号/标记已被弃用,取而代
Linux 101 Hacks 这本书的第 38 页建议: cat url-list.txt | xargs wget –c 我通常这样做: for i in `cat url-list.txt`
问题是当我为我的项目编写 Makefile 时,当我需要检测当前分支名称时,在 make 规则中我这样做了: check_branch: if [ "$(git rev-parse --abb
默认情况下,控制台命令文件夹位于:MyProject\MyBundle\Command并且一切都按预期工作,但是如果我将文件夹移动到另一个目录中,例如:MyProject\MyBundle\MyFol
我是一名优秀的程序员,十分优秀!