⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p4-8.c

📁 UNIX程序设计教程
💻 C
字号:
#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include "err_exit.h"int main(void){    struct stat   statbuf;    /* 关闭调整组ID位并打开组执行位 */    if (stat("foo",&statbuf) < 0)        err_exit("stat error for foo");    if (chmod("foo", (statbuf.st_mode & ~S_IXGRP) | S_ISGID) < 0)        err_exit("chmod error for foo");    /* 直接设置方式至"-rw-r--r--"*/    if (chmod("bar", S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) < 0)        err_exit("chmod error for bar");    exit(0);  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -