Linux C编程的小例子——实现who命令(第二版)

2014-11-24 01:45:42 · 作者: · 浏览: 2

Linux C编程的小例子——实现who命令(第二版)


#include
#include
#include
#include
#include



#define SHOWHOST


void showtime(long timeva l){
char* cp;
cp = ctime(&timeva l);


printf("%12.12s",cp+4);
}


void show_info(struct utmp* utbufp){
if(utbufp->ut_type != USER_PROCESS){
return ;
}


printf("%-8.8s",utbufp->ut_name);
printf(" ");
printf("%-8.8s",utbufp->ut_line);
printf(" ");
showtime(utbufp->ut_time);
printf(" ");


#ifdef SHOWHOST
if(utbufp->ut_host[0] != '\0'){
printf("( %s )",utbufp->ut_host);
}
#endif


printf("\n");
}
int main(){
struct utmp current_record;
int utmpfd;
int reclen = sizeof(current_record);


if((utmpfd = open(UTMP_FILE,O_RDONLY)) == -1){
perror(UTMP_FILE);


return 1;
}


while( read(utmpfd,¤t_record,reclen) == reclen ){
show_info(¤t_record);
}


close(utmpfd);


return 0;
}


相关阅读