Linux系统编程-3.ppt

  1. 1、本文档共41页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Linux系统编程-3

Linux及编程 Linux 文件操作与who命令 who命令 编写who工具 编写cp工具 使用缓冲区提高效率 who命令 所有的多用户系统都会有 告诉用户谁在使用系统 who命令 who命令能做什么? 运行 who命令 who命令能做什么? 使用manual who命令 who命令能做什么? 使用manual who命令 关于manual 手册页一般分为以下几个部分 who命令 关于manual 手册页包含在以下节中 E.g. man 5 crontab who命令 who如何工作?(搜索manual) who命令 who如何工作?(搜索manual) man 5 utmp who命令 who如何工作?(阅读头文件) less /usr/include/utmp.h who命令 who如何工作?(阅读头文件) less /usr/include/bits/utmp.h who命令 who工作原理 编写who工具 系统调用 编写who工具 系统调用 编写who工具 系统调用 编写who工具 系统调用 编写who工具 系统调用 编写who工具 关于文件描述符 一个很小的正整数 索引值,指向内核为每一个进程所维护的该进程打开文件的记录表 每个进程启动时都打开三个文件:标准输入,标准输出,标准错误输出 对应三个文件描述符:0,1,2 文件描述符的缺点:不能移植到非Unix系统,不直观 文件描述符的优点:兼容POSIX标准 编写who工具 系统调用 编写who工具 系统调用 强烈建议文件使用完后使用该函数!虽然在进程结束时,系统会自动关闭已打开的文件 编写who工具 编写who1.c /* who1.c - a first version of the who program * open, read UTMP file, and show results */ #include stdio.h #include utmp.h #include fcntl.h #include unistd.h #define SHOWHOST /* include remote machine on output */ int main() { struct utmp current_record; /* read info into here */ int utmpfd; /* read from this descriptor */ int reclen = sizeof(current_record); if ( (utmpfd = open(UTMP_FILE, O_RDONLY)) == -1 ){ perror( UTMP_FILE ); /* UTMP_FILE is in utmp.h */ exit(1); } while ( read(utmpfd, current_record, reclen) == reclen ) show_info(current_record); close(utmpfd); return 0; /* went ok */ } 编写who工具 编写who1.c /* * show info() * displays contents of the utmp struct in human readable form * *note* these sizes should not be hardwired */ show_info( struct utmp *utbufp ) { printf(%-8.8s, utbufp-ut_name); /* the logname */ printf( ); /* a space */ printf(%-8.8s, utbufp-ut_line); /* the tty */ printf( ); /* a space */ printf(%10ld, utbufp-ut_time); /* login time */ printf( ); /* a space */ #ifdef SHOWHOST printf((%s), utbufp-ut_host); /* the host */ #endif printf(\n); /* newline */ } 编写who工具 运行who1 编写who工具 改进who1 提取真实用户 less /usr/include/bits/utmp.h 编写who工具 改进who1 提取真实用户 show_info( struct utmp

文档评论(0)

asd522513656 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档