Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

5. (14 points) Assume we have a program named bigbrother, whose output format is as follows: [ text { username login_time } Rightarrow text {

image text in transcribed

5. (14 points) Assume we have a program named bigbrother, whose output format is as follows: \[ \text { username login_time } \Rightarrow \text { 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: 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. (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

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions