码迷,mamicode.com
首页 > 系统相关 > 详细

linux中常用的系统函数

时间:2020-11-12 13:44:15      阅读:19      评论:0      收藏:0      [点我收藏+]

标签:文件   span   common   quit   mon   stream   nbsp   sha   产生   

1.system()函数

头文件 
 #include <stdlib.h>

函数定义
 int system(const char * string); 

函数说明:通过linux命令 man 3 system 可以看到该函数的作用是:执行shell命令

system()会调用fork()产生子进程,由子进程来调用/bin/sh-c string来执行参数string字符串所代表的命令。此命
令执行完后随即返回原调用的进程。在调用system()期间SIGCHLD 信号会被暂时搁置,SIGINT和SIGQUIT 信
号则会被忽略。

实例说明:

比如需要将一些文件拷贝到另一个目录

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

int main(int argc,char* argv[])
{
    std::string cp_txt_commond = "/bin/cp -f ";//-f:覆盖已经存在的目标文件而不给出提示
    cp_txt_commond += "*.txt ";
    cp_txt_commond += "dir/";
    
    printf("cp_txt_commond result :%d" ,system(cp_txt_commond.c_str() ));
    return 0;
}

  

 

linux中常用的系统函数

标签:文件   span   common   quit   mon   stream   nbsp   sha   产生   

原文地址:https://www.cnblogs.com/zhaobinyouth/p/13796412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!