• linux之umask函数解析


    [lingyun@localhost umask_1]$ vim umask.c
     + umask.c                                                                                                                   
    /*********************************************************************************
     *      Copyright:  (C) 2013 fulinux<fulinux@sina.com> 
     *                  All rights reserved.
     *
     *       Filename:  umask.c
     *    Description:  This file 
     *                 
     *        Version:  1.0.0(08/02/2013~)
     *         Author:  fulinux <fulinux@sina.com>
     *      ChangeLog:  1, Release initial version on "08/02/2013 07:09:24 PM"
     *                 
     ********************************************************************************/


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <unistd.h>
    #include <fcntl.h>
    #include <sys/stat.h>


    #define RWRWRW (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)


    int main(void)
    {
        umask(0);
        if(creat("hello", RWRWRW) < 0)
        {
            printf("creat error for hello ");
            exit(1);
        }
        umask(S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH);
        if(creat("world", RWRWRW) < 0)
        {
            printf("creat error for world");
            exit(1);
        }
        exit(0);
    }
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
    ~                                                                                                                            
     ~/apue/umask/umask_1/umask.c[+]   CWD: /usr/local/src/lingyun/apue/umask/umask_1   Line: 37/38:12                           
    "umask.c" [New] 38L, 1016C written


    [lingyun@localhost umask_1]$ gcc umask.c 
    [lingyun@localhost umask_1]$ umask
    0022
    [lingyun@localhost umask_1]$ ./a.out 
    [lingyun@localhost umask_1]$ ls -l hello world 
    -rw-rw-rw- 1 lingyun trainning 0 Aug  2 19:19 hello
    -rw------- 1 lingyun trainning 0 Aug  2 19:19 world
    [lingyun@localhost umask_1]$ umask
    0022
    [lingyun@localhost umask_1]$ 

  • 相关阅读:
    ThinkPHP5远程代码执行高危漏洞(附:升级修复解决方法)
    PowerDesigner 表格导出为excel
    ubuntu 18.04 配置远程ssh/远程ftp/远程vnc登陆
    Linux apache的运行用户和用户组
    mac系统 安装pip,用python读写excel(xlrd、xlwt)安装
    nvm 设置 nodejs 默认版本
    js基础
    Node.js 8 中的 util.promisify的详解
    HTTP协议中POST、GET、HEAD、PUT等请求方法以及一些常见错误
    MQTT简介
  • 原文地址:https://www.cnblogs.com/aukle/p/3235321.html
Copyright © 2020-2023  润新知