linux仿写chmod命令

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

复制代码

代码如下:

#include

#include

#include

#include

int main(int argc,char **argv)

{

int mode;

 int mode_u;

 int mode_g;

 int mode_o;

 char *path;

 if(argc<3)

 {

  printf(“%s n”,argv[0]);;

  exit(0);

 }

mode = atoi(argv[1]);

 if(mode>777||mode<0)

 {

  printf(“mode num error”);

  exit(0);

 }

 mode_u = mode/100;

mode_g = (mode- mode_u*100)/10;

 mode_o = mode -mode_u*100-mode_g*10;

 mode = mode_u*8*8+mode_g*8+mode_o;

path = argv[2];

 if(chmod(path,mode)==-1)

 {

  perror(“chmod error”);

  exit(1);

 }

 return 0;

}

免费资源网 – https://freexyz.cn/


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞12 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容