unix 环境高级编程2

一、登录目录

    登录时从/etc/passwd读取的其实目录

二、文件描述符

    一个小的非负整数,shell自动打开三个描述符标准输入、标准输出 、标准错误

//从标准输入 写入标准输出
#include 
using namespace std;

#define BUFFSIZE 8192
int main(void)
{
    int n;
    char buf[BUFFSIZE];
    while( (n=read(STDIN_FILENO, buf, BUFFSIZE)) )
    {   
        if( write(STDOUT_FILENO, buf, n) != n)
        {   
            cout << "write error" << endl;
        }   
    }   

    if( n<0 )
        cout << "read error" << endl;
    return 0;
}
三、程序

    存放在磁盘中的可执行文件,由内核读入存储器,并使其执行,程序的执行实例叫做进程

//获取当前进程ID
#include 

using namespace std;

int main()
{
    cout << getpid() << endl;
    return  0;  
}
四、进程控制

    fork 、exec、waitpid、

//从标准输入读命令并执行
#include "sys/types.h"
#include "sys/wait.h"
#include 
#include "stdio.h"
#include "string.h"

using namespace std;

int main(void)
{
    char buf[1024];
    pid_t pid;
    int status;
    while( fgets(buf, 1024, stdin) != NULL  )
    {
        buf[strlen(buf)-1]=0;
        if( (pid = fork())<0 )
            cout << "fork error" << endl;
        else if(pid == 0)
        {
            execlp(buf, buf, (char*)0);
        }
        if( (pid = waitpid(pid, &status, 0))<0)
        {
            cout << "wait pid error" << endl;
        }
    }
    return 0;
}



->剩余9999小时0分钟

你可能感兴趣的:(10000小时计划,c++)