Answered step by step
Verified Expert Solution
Question
1 Approved Answer
5. (14 points) Assume we have a program named bigbnot/ser, whose output format is as follows: username login_time logout_time minutes_on If a user hasn't logged
5. (14 points) Assume we have a program named bigbnot/ser, whose output format is as follows: username login_time logout_time minutes_on If a user hasn't logged out, the logout time is set to 'none'. Times are otherwise in 24-hour format. The program resets every day at midnight; if someone logged in at 11:30pm, then at 12:01am it would say that they logged in at 12:00, and had been on for 1 minute. Here is some sample output, assuming you've run the command at 11:30pm: \begin{tabular}{|c|c|c|c|c|} \hline bart & 23:20 & & none & 10 \\ \hline homer & 10:15 & & 10:18 & 3 \\ \hline homer & 10:20 & & 10:30 & 10 \\ \hline smithers & 7:45 & & 22:01 & 856 \\ \hline smithers & 11:15 & & 12:27 & 72 \\ \hline \end{tabular} Bart logged on 10 minutes ago, and is still on. Homer logged in at 10:15am for three minutes, and later logged in at 10:20am for 10 minutes. Smithers was logged in most of the day in one window, and also opened a second window for just over an hour. Note that: (1) the program uses groups of spaces, sometimes more, sometimes fewer, so the output is in neat columns. (There are no tabs in the output.), and (2) the output is sorted by username for everyone who logged on today in the order they logged in. Write shell commands that begin with and generate the following output: (a) (two points) Show the full lines for the five longest login sessions of the day. (b) (two points) Show only the names and login times for all sessions. You may only use a single awk command after the pipe. (c) (two points) Show only the names and login times for all sessions. You may not use awk in your answer. (c) (two points) Show only the names and login times for all sessions. You may not use awk in your answer. (d) (two points) Show the full line for all login sessions that began before 8am. (e) (two points) Show the full line for all login sessions that ended after 5pm. (f) (four points) Give the total login time for user carl, counting all login sessions
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started