gpt4 book ai didi

linux - Bash 脚本 - 最后显示当天的登录 session 数

转载 作者:太空宇宙 更新时间:2023-11-04 04:08:23 25 4
gpt4 key购买 nike

如何显示当天登录系统的次数?例如。

日期、该用户登录以及给定日期的登录次数。

最佳答案

将其添加到.bash_profile:

touch .daily_login_count
read tomorrow count < .daily_login_count # It's OK if file is empty
# Check if this is the first login of the day
if (( $(date +%s) > tomorrow )); then
count=0
(( tomorrow += 86400 ))
fi
(( count++ ))
echo "$tomorrow $count" > .daily_login_count
echo "$(date) $user $count login(s) today"

关于linux - Bash 脚本 - 最后显示当天的登录 session 数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20221204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com