Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Linux 操作系统的新手 我正在学习使用 Shell 脚本执行一些命令 我想查看哪个用户第一次登录。我应该插入什么来获取第一次登录的用户。我知道是谁,但这不是我想要的。请帮忙
如果你想从当前登录的用户中找到最先登录的用户,你可以这样做:
who | awk '{print $3 " " $4 " "$1}' | sort | head -1
基本上,取 的输出who,按登录时间排序,得到第一行。
who