Find all users on your system whose user IDs are greater than 99, and the number of users on your system whose user IDs are greater than 99.

What will be an ideal response?

First you can use:
grep -E '\*:[0-9]{3,}:' /etc/passwd | cut -d: -f1
to generate a list of the users whose ID are greater than 99, then you can pipe it to wc -l instead of cut to calculate the total number of users that match the criteria.

Computer Science & Information Technology

You might also like to view...

To create a better timing environment in communications networks, external timing distribution occurs through

a. station clocks. b. internal timing. c. crystal oscillators. d. distribution frames.

Computer Science & Information Technology

A ___________ is a main program that only checks that functions execute correctly.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology