system (3) 命令的常见用途是什么?

What are common uses for the system (3) command?

我遇到了 the command while reading the famous C Language Book (1988)。这个命令今天常用吗?

摘自本书(第 7.8.4 节):

The function system(char *s) executes the command contained in the character string s, then resumes execution of the current program. The contents of s depend strongly on the local operating system. As a trivial example, on UNIX systems, the statement
system("date");
causes the program date to be run ...

我的印象是 fork-and-exec 是从当前程序 运行 另一个程序的主要方式...

system 标准 C 库中的函数,允许 C 程序调用外部(意味着 OS 级别)命令。

(几乎)一切都在上面的句子中:函数是标准的 C,这意味着任何一致的实现都支持它。但是 OS 所做的是错误的......只是 OS 依赖。

它应该是编写可移植程序的首选方式(因为它是标准 C)但不幸的是:

  1. 并非所有 OS 支持相同的命令 and/or 相同的语法
  2. 众所周知,大多数系统都有一些注意事项

后一部分与安全性有关:许多OS(至少我所知道的)有一个可配置的路径,在其中搜索命令,在那种情况下system 函数确实使用了该路径。问题在于,通过更改路径,如果有人设法在他们控制的地方安装了同名的不同命令,并且还设法更改了路径。

这就是 system 通常不受欢迎的原因,细心的程序员只依赖较低级别的系统相关函数,例如 Unix 上的 fork+exec 或 Windows 上的 CreateProcess,或者使用绝对从 system 调用的命令的路径。但是你需要一种相当复杂的配置方式来使绝对路径适应各种系统...