C语言中的命令执行



C语言中的命令执行

C语言中的命令执行用于使用C程序执行系统命令。系统命令通过使用system()函数执行,该函数是stdlib.h头文件的库函数。

使用system()函数,可以在C程序中执行Windows/Linux终端命令。

语法

以下是执行系统命令的语法:

system(char *command);

命令执行示例

以下代码显示了在C语言中使用system()函数执行ls命令。

#include <stdio.h>
#include<stdlib.h>
#include<string.h>

int main() {

   char cmd[10];
   strcpy(cmd,"dir C:\\users\\user\\*.c");
   system(cmd);
   
   return 0;
}

输出

运行代码并检查其输出:

C:\Users\user>dir *.c
 Volume in drive C has no label.
 Volume Serial Number is 7EE4-E492

 Directory of C:\Users\user

04/01/2024  01:30 PM               104 add.c
04/02/2024  01:37 PM               159 add1.c
04/02/2024  01:37 PM               259 array.c
04/02/2024  01:37 PM               149 main.c
04/02/2024  01:37 PM               180 recursion.c
04/02/2024  01:37 PM               241 struct.c
04/02/2024  01:37 PM               172 voidptr.c
               7 File(s)           1,264 bytes
               0 Dir(s)  139,073,761,280 bytes 

C语言中的exec函数族

"unistd.h"头文件中引入了exec函数族。这些函数用于执行文件,一旦调用,它们就会用新的进程映像替换当前进程映像。

以下是C语言中exec函数族中的函数:

  1. execl()函数
  2. execlp()函数
  3. execle()函数
  4. execv()函数
  5. execvp()函数
  6. execve()函数

1. execl()函数

execl()函数的第一个参数是可执行文件作为其第一个参数。接下来的参数在执行时将提供给文件。最后一个参数必须为NULL。

int execl(const char *pathname, const char *arg, ..., NULL)

示例

请看下面的例子:

#include <unistd.h>

int main(void) {

   char *file = "/usr/bin/echo";
   char *arg1 = "Hello world!";

   execl(file, file, arg1, NULL);

   return 0;
}

Linux中的echo命令通过C代码调用。

输出

保存、编译和执行上述程序:

$ gcc hello.c -o hello
$ ./hello
Hello world!

2. execlp()函数

execlp()函数类似于execl()函数。它使用PATH环境变量来定位文件。因此,无需提供可执行文件的路径。

int execlp(const char *file, const char *arg, ..., NULL)

示例

请看下面的例子:

#include <unistd.h>

int main(void) {

   char *file = "echo";
   char *arg1 = "Hello world!";

   execlp(file, file, arg1, NULL);
   
   return 0;
}

输出

这里,echo已经位于PATH环境变量中。保存、编译并从终端运行。

$ gcc hello.c -o hello
$ ./hello
Hello world!

3. execle()函数

在execle()函数中,我们可以将环境变量传递给函数,它将使用这些变量。其原型如下:

int execle(const char *pathname, const char *arg, ..., NULL, char *const envp[])

示例

请看下面的例子:

#include <unistd.h>

int main(void) {

   char *file = "/usr/bin/bash";
   char *arg1 = "-c";
   char *arg2 = "echo $ENV1 $ENV2!";
   char *const env[] = {"ENV1 = Hello", "ENV2 = World", NULL};

   execle(file, file, arg1, arg2, NULL, env);

   return 0;
}

输出

保存、编译并从终端运行:

$ gcc hello.c -o hello
$ ./hello
Hello world!

4. execv()函数

execv()函数接收一个参数向量,这些参数将提供给可执行文件。此外,向量的最后一个元素必须为NULL

int execv(const char *pathname, char *const argv[])

示例

请看下面的例子:

#include <unistd.h>

int main(void) {

   char *file = "/usr/bin/echo";
   char *const args[] = {"/usr/bin/echo", "Hello world!", NULL};

   execv(file, args);

   return 0;
}

输出

保存、编译和执行上述程序:

$ gcc hello.c -o hello
$ ./hello
Hello world!

5. execvp()函数

execvp()函数具有以下语法:

int execvp(const char *file, char *const argv[])

示例

请看下面的例子:

#include <unistd.h>

int main(void) {

   char *file = "echo";
   char *const args[] = {"/usr/bin/echo", "Hello world!", NULL};

   execvp(file, args);

   return 0;
}

输出

保存、编译和执行上述程序:

$ gcc hello.c -o hello
$ ./hello
Hello world!

6. execve()函数

除了环境变量之外,我们还可以将其他参数作为NULL终止的向量传递给execve()函数:

int execve(const char *pathname, char *const argv[], char *const envp[])

示例

请看下面的例子:

#include <unistd.h>

int main(void) {

   char *file = "/usr/bin/bash";
   char *const args[] = {"/usr/bin/bash", "-c", "echo Hello $ENV!", NULL};
   char *const env[] = {"ENV=World", NULL};

   execve(file, args, env);

   return 0;
}

输出

保存、编译和执行上述程序:

$ gcc hello.c -o hello
$ ./hello
Hello world!
广告