You want to view a list of users on a Linux system. What command should you use? code example
Example 1: list users in linux
cat /etc/passwd
Example 2: users list linux
cut -d: -f1 /etc/passwd
or
cat /etc/passwd
cat /etc/passwd
cut -d: -f1 /etc/passwd
or
cat /etc/passwd