在Linux中,要查找系统上的所有用户,可以使用getent命令结合passwd文件
getent
passwd
getent passwd | cut -d: -f1
这个命令的解释如下:
getent passwd
cut -d: -f1
运行这个命令后,你将看到系统上的所有用户列表。