Using a Single system() Call to Execute Multiple Commands in C

送分小仙女□ 提交于 2019-11-26 17:04:43

问题


In an information security lab I'm working on, I've been tasked with executing multiple commands with a single call to "system()" (written in C, running on Fedora). What is the syntax that will allow me to execute more than command through system()? (The idea being you could execute arbitrary commands through a program running on a remote computer, if the program interacts with the OS through the system() call.)

I.e.:

char command[] = "????? \r\n"; 
system(command);

回答1:


That depends on the shell being invoked to execute the commands, but in general most shells use ; to separate commands so something like this should work:

command1; command2; command3

[EDIT]

As @dicroce mentioned, you can use && instead of ; which will stop execution at the first command that returns a non-zero value. This may or may not be desired (and some commands may return non-zero on success) but if you are trying to handle commands that can fail you should probably not string multiple commands together in a system() call as you don't have any way of determining where the failure occured. In this case your best bet would either be to execute one command at a time or create a shell script that performs the appropriate error handling and call that instead.




回答2:


Use && between your commands. It has the advantage that it only continues executing commands as long as they return successful error codes. Example:

"cd /proc && cat cpuinfo"




回答3:


One possibility comes immediately to mind. You could write all the commands to a script then run it with:

system ("cmd.exe /c \"x.cmd\"");

or, now that I've noticed you're running on Fedora:

system ("x.sh");


来源:https://stackoverflow.com/questions/245600/using-a-single-system-call-to-execute-multiple-commands-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!