linux C 语言的 system(执行shell 命令)

http://blog.chinaunix.net/uid-22150747-id-189252.html

相关函数 fork,execve,waitpid,popen
表头文件
代码:
#include
定义函数
代码:
int system(const char * string);
函数说明
system() 会调用fork()产生子进程,由子进程来调用/bin/sh-c string来执行参数string字符串所代表的命令,此命令执行完后随即返回原调用的进程。在调用system()期间SIGCHLD 信号会被暂时搁置,SIGINT和SIGQUIT 信号则会被忽略。
返回值
如果system()在调用/bin/sh时失败则返回127,其他失败原因返回-1。若参数string为空指针(NULL),则返回非零值。如果 system()调用成功则最后会返回执行shell命令后的返回值,但是此返回值也有可能为system()调用/bin/sh失败所返回的127,因 此最好能再检查errno 来确认执行成功。
附加说明

在编写具有SUID/SGID权限的程序时请勿使用system(),system()会继承环境变量,通过环境变量可能会造成系统安全的问题。
范例

代码:
#include
main()
{
system(“ls -al /etc/passwd /etc/shadow”);
}
执行
代码:
-rw-r--r-- 1 root root 705 Sep 3 13 :52 /etc/passwd
-r--------- 1 root root 572 Sep 2 15 :34 /etc/shadow
__________________
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
阅读(955) | 评论(0) | 转发(2) |
给主人留下些什么吧!~~
评论热议
Linux 中使用 C 语言实现 shell 命令 <> 的重定向,可以使用 dup2() 函数来实现。dup2() 函数可以将一个文件描述符的内容复制到另一个文件描述符中,从而实现文件重定向。 下面是一个简单的示例程序,可以实现 “<” 和 “>” 的文件重定向功能: ```c #include <stdio.h> #include <unistd.h> #include <fcntl.h> int main(int argc, char *argv[]) { int in_fd, out_fd; char *in_file, *out_file, *cmd; if (argc != 4) { fprintf(stderr, "Usage: %s <input_file> <output_file> <command>\n", argv[0]); return 1; } in_file = argv[1]; out_file = argv[2]; cmd = argv[3]; // 打开输入文件 in_fd = open(in_file, O_RDONLY); if (in_fd == -1) { perror("open input file"); return 2; } // 打开输出文件 out_fd = open(out_file, O_CREAT|O_WRONLY|O_TRUNC, 0644); if (out_fd == -1) { perror("open output file"); return 2; } // 将输入文件重定向到标准输入 if (dup2(in_fd, STDIN_FILENO) == -1) { perror("dup2 input file"); return 3; } // 将输出文件重定向到标准输出 if (dup2(out_fd, STDOUT_FILENO) == -1) { perror("dup2 output file"); return 3; } // 执行命令 if (system(cmd) == -1) { perror("system command"); return 4; } // 关闭文件 close(in_fd); close(out_fd); return 0; } ``` 在上面的程序中,我们首先打开输入文件和输出文件,并将它们分别重定向到标准输入和标准输出。然后执行传入的命令命令的输出将被重定向到输出文件中。最后关闭文件描述符。 使用该程序可以实现以下命令的效果: ```bash $ ./redirect input.txt output.txt wc -l ``` 该命令会将输入文件 input.txt 的内容通过 “<” 重定向到 wc 命令的标准输入中,将 wc 的输出通过 “>” 重定向到 output.txt 文件中。最后输出文件 output.txt 中行数的结果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值