SlideShare a Scribd company logo
1 of 3
Generate a menu to ask the system administrator for the task that he or she would like to see
performed. The available tasks are as follows: Create a Linux group. Drop a Linux group. Create
a user. Drop a user. Prompt the user for the choice, and perform the system command. In
addition, check to make sure that before creating either the user or the group that neither already
exists; if it does already exist, print out the existing user ID, comment field, and home directory
locations from the password file.
Solution
#!/bin/bash
choice=
until [ "$choice" = "0"]; do
echo ""
echo "MENU"
echo “ What you want to do?―
echo "1 – Create Linux group"
echo "2 – Drop Linux group"
echo "3 – Create a user"
echo "4 – Drop a user"
echo ""
echo "0 - Exit program"
echo ""
echo -n "Enter Choice:"
read choice
echo ""
case $choice in
1 ) echo “Creates a New Group―
groupadd –g linux
echo “Group created―
fi ;;
2 ) echo "This drops the group"
echo "Please enter group name"
read groupname
echo “Group cannot be deleted―
fi ;;
3 ) echo "Creates a user"
echo "Please enter username:"
read username
4 ) echo “drop a user―
echo "Please enter user name"
read username
fi ;;
0 ) exit;;
* ) echo "Please enter 1,2,3,4 or 0"
esac
done
Generate a menu to ask the system administrator for the task that he o.docx

More Related Content

Similar to Generate a menu to ask the system administrator for the task that he o.docx

PHP-MySQL Database Connectivity Using XAMPP Server
PHP-MySQL Database Connectivity Using XAMPP ServerPHP-MySQL Database Connectivity Using XAMPP Server
PHP-MySQL Database Connectivity Using XAMPP ServerRajiv Bhatia
 
Why You Need A Duplicate File Explorer
Why You Need A Duplicate File ExplorerWhy You Need A Duplicate File Explorer
Why You Need A Duplicate File Explorerjohnset
 
Batch programming and Viruses
Batch programming and VirusesBatch programming and Viruses
Batch programming and VirusesAkshay Saini
 
18IF004_CNS.docx
18IF004_CNS.docx18IF004_CNS.docx
18IF004_CNS.docxRajAmbere1
 
Ankit Phadia Hacking tools (2)
Ankit Phadia Hacking tools (2)Ankit Phadia Hacking tools (2)
Ankit Phadia Hacking tools (2)Chandra Pr. Singh
 
Lecture 1 sql {installation & uninstallation}
Lecture 1 sql {installation & uninstallation}Lecture 1 sql {installation & uninstallation}
Lecture 1 sql {installation & uninstallation}Shubham Shukla
 
How to Delete All Junk Files from Computer
How to Delete All Junk Files from ComputerHow to Delete All Junk Files from Computer
How to Delete All Junk Files from Computerelitey123
 
Ethi minii - Ethical Hacking
Ethi minii - Ethical HackingEthi minii - Ethical Hacking
Ethi minii - Ethical HackingBeing Uniq Sonu
 
configuration ,management and troubleshooting of Group Accounts.
configuration ,management and troubleshooting of Group Accounts.configuration ,management and troubleshooting of Group Accounts.
configuration ,management and troubleshooting of Group Accounts.Rajpoot Sulahry
 
Convert a UNIX shell script (User Maintenance) into a Perl script. T.docx
Convert a UNIX shell script (User Maintenance) into a Perl script. T.docxConvert a UNIX shell script (User Maintenance) into a Perl script. T.docx
Convert a UNIX shell script (User Maintenance) into a Perl script. T.docxclayrhr
 
2.1 user practical
2.1 user practical2.1 user practical
2.1 user practicalMuuluu
 
WASPNEWServerDecoumentation
WASPNEWServerDecoumentationWASPNEWServerDecoumentation
WASPNEWServerDecoumentationJames Willis
 
Kinect installation guide
Kinect installation guideKinect installation guide
Kinect installation guidegilmsdn
 

Similar to Generate a menu to ask the system administrator for the task that he o.docx (20)

PHP-MySQL Database Connectivity Using XAMPP Server
PHP-MySQL Database Connectivity Using XAMPP ServerPHP-MySQL Database Connectivity Using XAMPP Server
PHP-MySQL Database Connectivity Using XAMPP Server
 
Why You Need A Duplicate File Explorer
Why You Need A Duplicate File ExplorerWhy You Need A Duplicate File Explorer
Why You Need A Duplicate File Explorer
 
Batch programming and Viruses
Batch programming and VirusesBatch programming and Viruses
Batch programming and Viruses
 
18IF004_CNS.docx
18IF004_CNS.docx18IF004_CNS.docx
18IF004_CNS.docx
 
Ankit Phadia Hacking tools (2)
Ankit Phadia Hacking tools (2)Ankit Phadia Hacking tools (2)
Ankit Phadia Hacking tools (2)
 
Lecture 1 sql {installation & uninstallation}
Lecture 1 sql {installation & uninstallation}Lecture 1 sql {installation & uninstallation}
Lecture 1 sql {installation & uninstallation}
 
Entourage recovery
Entourage recoveryEntourage recovery
Entourage recovery
 
1 system security
1 system security1 system security
1 system security
 
How to Delete All Junk Files from Computer
How to Delete All Junk Files from ComputerHow to Delete All Junk Files from Computer
How to Delete All Junk Files from Computer
 
Ethi minii - Ethical Hacking
Ethi minii - Ethical HackingEthi minii - Ethical Hacking
Ethi minii - Ethical Hacking
 
configuration ,management and troubleshooting of Group Accounts.
configuration ,management and troubleshooting of Group Accounts.configuration ,management and troubleshooting of Group Accounts.
configuration ,management and troubleshooting of Group Accounts.
 
Convert a UNIX shell script (User Maintenance) into a Perl script. T.docx
Convert a UNIX shell script (User Maintenance) into a Perl script. T.docxConvert a UNIX shell script (User Maintenance) into a Perl script. T.docx
Convert a UNIX shell script (User Maintenance) into a Perl script. T.docx
 
Yerbuddy18
Yerbuddy18Yerbuddy18
Yerbuddy18
 
Yerbuddy 18
Yerbuddy 18Yerbuddy 18
Yerbuddy 18
 
2.1 user practical
2.1 user practical2.1 user practical
2.1 user practical
 
Ankit Phadia Hacking tools
Ankit Phadia Hacking toolsAnkit Phadia Hacking tools
Ankit Phadia Hacking tools
 
Read me
Read meRead me
Read me
 
WASPNEWServerDecoumentation
WASPNEWServerDecoumentationWASPNEWServerDecoumentation
WASPNEWServerDecoumentation
 
Kinect installation guide
Kinect installation guideKinect installation guide
Kinect installation guide
 
Introduction to Ubuntu
Introduction to UbuntuIntroduction to Ubuntu
Introduction to Ubuntu
 

More from edmundp8cgllams

For this Assignment- submit the following program- The following code.docx
For this Assignment- submit the following program- The following code.docxFor this Assignment- submit the following program- The following code.docx
For this Assignment- submit the following program- The following code.docxedmundp8cgllams
 
For the year ended December 31- 2014- a company- reported the followin.docx
For the year ended December 31- 2014- a company- reported the followin.docxFor the year ended December 31- 2014- a company- reported the followin.docx
For the year ended December 31- 2014- a company- reported the followin.docxedmundp8cgllams
 
For the accompanying inquiries enter the answer and give complete expl.docx
For the accompanying inquiries enter the answer and give complete expl.docxFor the accompanying inquiries enter the answer and give complete expl.docx
For the accompanying inquiries enter the answer and give complete expl.docxedmundp8cgllams
 
Financial managers must understand variance between budgeted expectati.docx
Financial managers must understand variance between budgeted expectati.docxFinancial managers must understand variance between budgeted expectati.docx
Financial managers must understand variance between budgeted expectati.docxedmundp8cgllams
 
Find the domain of the function-.docx
Find the domain of the function-.docxFind the domain of the function-.docx
Find the domain of the function-.docxedmundp8cgllams
 
Financial instruments are assets that have a monetary value or record.docx
Financial instruments are assets that have a monetary value or record.docxFinancial instruments are assets that have a monetary value or record.docx
Financial instruments are assets that have a monetary value or record.docxedmundp8cgllams
 
Fischer esterification and hydrolysis lab Salicylic acid was mixed wit.docx
Fischer esterification and hydrolysis lab Salicylic acid was mixed wit.docxFischer esterification and hydrolysis lab Salicylic acid was mixed wit.docx
Fischer esterification and hydrolysis lab Salicylic acid was mixed wit.docxedmundp8cgllams
 
Financing activities involve- issuing debt- acquiring long-term assets.docx
Financing activities involve- issuing debt- acquiring long-term assets.docxFinancing activities involve- issuing debt- acquiring long-term assets.docx
Financing activities involve- issuing debt- acquiring long-term assets.docxedmundp8cgllams
 
Financial information for Ernie Bishop Company is presented below- ERN.docx
Financial information for Ernie Bishop Company is presented below- ERN.docxFinancial information for Ernie Bishop Company is presented below- ERN.docx
Financial information for Ernie Bishop Company is presented below- ERN.docxedmundp8cgllams
 
Ferritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docx
Ferritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docxFerritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docx
Ferritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docxedmundp8cgllams
 

More from edmundp8cgllams (10)

For this Assignment- submit the following program- The following code.docx
For this Assignment- submit the following program- The following code.docxFor this Assignment- submit the following program- The following code.docx
For this Assignment- submit the following program- The following code.docx
 
For the year ended December 31- 2014- a company- reported the followin.docx
For the year ended December 31- 2014- a company- reported the followin.docxFor the year ended December 31- 2014- a company- reported the followin.docx
For the year ended December 31- 2014- a company- reported the followin.docx
 
For the accompanying inquiries enter the answer and give complete expl.docx
For the accompanying inquiries enter the answer and give complete expl.docxFor the accompanying inquiries enter the answer and give complete expl.docx
For the accompanying inquiries enter the answer and give complete expl.docx
 
Financial managers must understand variance between budgeted expectati.docx
Financial managers must understand variance between budgeted expectati.docxFinancial managers must understand variance between budgeted expectati.docx
Financial managers must understand variance between budgeted expectati.docx
 
Find the domain of the function-.docx
Find the domain of the function-.docxFind the domain of the function-.docx
Find the domain of the function-.docx
 
Financial instruments are assets that have a monetary value or record.docx
Financial instruments are assets that have a monetary value or record.docxFinancial instruments are assets that have a monetary value or record.docx
Financial instruments are assets that have a monetary value or record.docx
 
Fischer esterification and hydrolysis lab Salicylic acid was mixed wit.docx
Fischer esterification and hydrolysis lab Salicylic acid was mixed wit.docxFischer esterification and hydrolysis lab Salicylic acid was mixed wit.docx
Fischer esterification and hydrolysis lab Salicylic acid was mixed wit.docx
 
Financing activities involve- issuing debt- acquiring long-term assets.docx
Financing activities involve- issuing debt- acquiring long-term assets.docxFinancing activities involve- issuing debt- acquiring long-term assets.docx
Financing activities involve- issuing debt- acquiring long-term assets.docx
 
Financial information for Ernie Bishop Company is presented below- ERN.docx
Financial information for Ernie Bishop Company is presented below- ERN.docxFinancial information for Ernie Bishop Company is presented below- ERN.docx
Financial information for Ernie Bishop Company is presented below- ERN.docx
 
Ferritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docx
Ferritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docxFerritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docx
Ferritin oxidizes Fe2+ to Fe3+ before mineralizing the iron in the fer.docx
 

Recently uploaded

KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 

Recently uploaded (20)

KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 

Generate a menu to ask the system administrator for the task that he o.docx

  • 1. Generate a menu to ask the system administrator for the task that he or she would like to see performed. The available tasks are as follows: Create a Linux group. Drop a Linux group. Create a user. Drop a user. Prompt the user for the choice, and perform the system command. In addition, check to make sure that before creating either the user or the group that neither already exists; if it does already exist, print out the existing user ID, comment field, and home directory locations from the password file. Solution #!/bin/bash choice= until [ "$choice" = "0"]; do echo "" echo "MENU" echo “ What you want to do?― echo "1 – Create Linux group" echo "2 – Drop Linux group" echo "3 – Create a user" echo "4 – Drop a user" echo "" echo "0 - Exit program" echo "" echo -n "Enter Choice:"
  • 2. read choice echo "" case $choice in 1 ) echo “Creates a New Group― groupadd –g linux echo “Group created― fi ;; 2 ) echo "This drops the group" echo "Please enter group name" read groupname echo “Group cannot be deleted― fi ;; 3 ) echo "Creates a user" echo "Please enter username:" read username 4 ) echo “drop a user― echo "Please enter user name" read username fi ;; 0 ) exit;; * ) echo "Please enter 1,2,3,4 or 0" esac done