check_user_createdate.sh,createstackuser.sh


  在前面这篇文章Linux如何找出用户的创建时间里面讨论了查看用户创建时间的方法,后面自己尝试弄了一个脚本来检查所有用户创建时间脚本,当然更合理的应该叫检查所有用户的密码修改时间比较准确(因为这种方法有条件限制),期间和夕照讨论了一下如何用shell脚本实现,获益良多。下面是整理过后的脚本。

#! /bin/bash
 
echo 'this is not the standard method the check the user create date
      if the user modified the password after the user created,
      the output result will not correct, please noted!';
 
userpwdfile=/etc/shadow
 
 
for line in `cat $userpwdfile`:
  do
      days=`echo $line|awk -F ':' '{print $3}'`
 
      username=`echo $line | awk -F ':' '{print $1}'`
 
      pwdchangetime=`date -d "1970-01-01 $days days" "+%Y/%m/%d"`
 
      echo $username $pwdchangetime
  done

相关内容

    暂无相关文章