error: too many arguments to function ‘system‘

报错原因:system函数里面出现了太多参数

system功能说明:把 command 指定的命令名称或程序名称传给要被命令处理器执行的主机环境,并在命令完成后返回。如果发生错误,则返回值为 -1;

// system函数声明,只能支持一个字符串
int system(const char *command)

用法1:直接在参数里面填写字符串

int function1()
{
	 int ret = -1;
   ret = system("ls -l" );
   return ret;
}

用法2:利用数组来组合存储想要执行的命令

int function2()
{
		int ret = -1;
    char command[32];
 
   	strcpy( command, "ls -l" );
   	ret = system(command);
 
  	return ret;
}

你可能感兴趣的:(linux与虚拟机,linux)