I need a script to figure out if a user's last login was 90 days or older. OS=AIX, shell=Korn
Here's what I have so far:
====
#!/usr/bin/ksh
NOW=`lsuser -a time_last_login root | awk -F= '{ print $2 }'`
(( LAST_LOGIN_TIME = 0 ))
(( DIFF = $NOW - $LAST_LOGIN_TIME ))
lsuser -a time_last_login ALL |\
while read LAST_LOGIN_RECORD
do
(( DIFF = NOW - LAST_LOGIN_TIME ))
if [[ $LAST_LOGIN_TIME <= 0 ]]; then
echo "LAST_LOGIN_TIME <= 0"
else
echo "FOUND! LAST_LOGIN_TIME > 0"
fi
done
====
Thanks in advance!
Here's what I have so far:
====
#!/usr/bin/ksh
NOW=`lsuser -a time_last_login root | awk -F= '{ print $2 }'`
(( LAST_LOGIN_TIME = 0 ))
(( DIFF = $NOW - $LAST_LOGIN_TIME ))
lsuser -a time_last_login ALL |\
while read LAST_LOGIN_RECORD
do
(( DIFF = NOW - LAST_LOGIN_TIME ))
if [[ $LAST_LOGIN_TIME <= 0 ]]; then
echo "LAST_LOGIN_TIME <= 0"
else
echo "FOUND! LAST_LOGIN_TIME > 0"
fi
done
====
Thanks in advance!