fig4.12

来自「unix环境编程」· 12 代码 · 共 22 行

12
22
字号
#include "apue.h"intmain(void){	struct stat		statbuf;	/* turn on set-group-ID and turn off group-execute */	if (stat("foo", &statbuf) < 0)		err_sys("stat error for foo");	if (chmod("foo", (statbuf.st_mode & ~S_IXGRP) | S_ISGID) < 0)		err_sys("chmod error for foo");	/* set absolute mode to "rw-r--r--" */	if (chmod("bar", S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) < 0)		err_sys("chmod error for bar");	exit(0);}

⌨️ 快捷键说明

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