不完全的who

该C程序打开并读取utmp文件,获取用户进程信息,包括用户名、终端行、登录时间和主机名,并使用时间函数进行格式化显示。
摘要由CSDN通过智能技术生成
#include<stdio.h>
#include<time.h>
#include<utmp.h>
#include<fcntl.h>
#include<unistd.h>
void show_info(struct utmp*);
void show_time(time_t);
void show_host(char*);

int main()
{
  struct utmp current_record;
  int fd_utmp;
  int len_of_utmp;
  len_of_utmp=sizeof(current_record);
  if((fd_utmp=open(UTMP_FILE,O_RDONLY))==-1){
    perror(UTMP_FILE);
    exit(1);
  }
  while(read(fd_utmp,&current_record,len_of_utmp)==len_of_utmp){
    if(current_record.ut_type==USER_PROCESS){
      show_info(&current_record);
    }
  }
  close(fd_utmp);
  return 0;
}

void show_info(struct utmp* current_record)
{
  printf("%-9.9s",current_record->ut_name);
  printf("%-13.13s",current_record->ut_line);
  show_time(current_record->ut_time);
  show_host(current_record->ut_host);
}

void show_time(time_t long_time)
{
  struct tm* tm_time;
  tm_time=gmtime(&long_time);
  printf("%d-%.2d-%-3.2d",tm_time->tm_year+1900,tm_time->tm_mon+1,tm_time->tm_mday);
  printf("%.2d:%-3.2d",tm_time->tm_hour+8,tm_time->tm_min);
}

void show_host(char* ut_host)
{
  int len_of_host=strlen(ut_host);
  char host[len_of_host+2];
  host[0]='(';
  int i;
  for(i=0;i<=len_of_host;i++){
    host[i+1]=ut_host[i];
  }
  host[i]=')';
  printf("%-13.13s\n",host);
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值