Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a complete bash script that monitors who logs in and logs out of the current CSE Linux machine (e.g., cse01, cse02, etc.) where the

image text in transcribed
image text in transcribed
Write a complete bash script that monitors who logs in and logs out of the current CSE Linux machine (e.g., cse01, cse02, etc.) where the script is running. In particular, you will check the status of who is logged in every 10 seconds and report each user ID that logs in or logs out during that time frame. Note that there may be more than one user that logs in or out during this interval. You must include the host name when reporting the user ID information. In addition, you will install a custom signal handler to trap the SIGINT (ie, ^C) one time before you are able to terminate the script with t e SIGINT You will also print out the current date and time and report the number of users logged in even if 'here are no changes (i.e., no one logged in or out during the interva) Please see the SAMPLE OUTPUT for several examples, including the dif erent scenarios that might occur. REQUIREMENTS Your script should be well documented in terms of comments. For example, good comments in general consist of a header (with your name, course section, date, and brief description), comments for each variable, and commented blocks of code. Your bash script should be named "minor2.sh, without the quotes. Note that this must be done as a bash script, not a C program. .Your script will be graded based largely on whether it works correctly on the CSE machines (e.g., cse01, cse02,.., cse06), so you should make sure that your script runs on a CSE machine. Please pay attention to the SAMPLE OUTPUT for how this script is expected to work. If you have any questions about this, please contact your instructor or TAs assigned to this course to ensure you understand thes directions . This is an individual programming assignment that must be the sole work of the individual student. Any instance of academic dishonesty will result in a grade of F" for the course, along with a report filed into the Academic Integrity Database SAMPLE OUTPUT (user input shown in bold): s ./minor2.sh Wed Feb 13 01:05:25 CST 2019 initial users logged in > xyz0123 logged in to cse01 ab 0456 logged in to cse01 def0789 logged in to cseo1 > mat0299 logged in to cse01 > mn0012 logged in to cse0 > rst0034 logged in to cse01 > jk10056 logged in to cse01 s uv0078 logged in to cse01 Wed Feb 13 01:05:25 CST 2019 ) # of users: 8 Wed Feb 13 01:05:35 CST 2019 ) # of users: 8 Wed Feb 13 01:05:45 CST 2019 ) # of users: 8 Wed Feb 13 01:05:55 CST 2019 ) # of users: 8 Wed Feb 13 01:06:05 CST 2019 ) # of users: 8

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Oracle 10g Database Administrator Implementation And Administration

Authors: Gavin Powell, Carol McCullough Dieter

2nd Edition

1418836656, 9781418836658

More Books

Students also viewed these Databases questions

Question

Be familiar with the different perspectives of service quality.

Answered: 1 week ago

Question

Describe key customer feedback collection tools.

Answered: 1 week ago

Question

Know what customers expect from the firm when they complain.

Answered: 1 week ago