Hello all!

Can somebody help me write a perl script which totals the total amount of time that each user is using on the system, as well as the number of processes the user is using.

As example:
The output of your program would be the following:

root 00:01:18 13
ananias 00:00:00 1
dias 00:00:00 1
peter 00:00:00 1

>Can somebody help me write a perl script which totals the total amount of time that each user is using on the
>system, as well as the number of processes the user is using.
Pipe the result of a call to ps through your script and parse it, saving the items you want and calculating your totals. ps is different for every system, so do a man ps and when you have more information and you've actually made an attempt, come back and we can help more.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.