Linux中如何查看系统最后创建的3个用户?

2025-04-16 11:56:34
推荐回答(1个)
回答1:

tail -n 3 /etc/passwd | awk -F: '{printf "%s\n",$1}'
望采纳