https://github.com/glenmiracle18/alu-summatives
alu-summative2
https://github.com/glenmiracle18/alu-summatives
Last synced: 2 months ago
JSON representation
alu-summative2
- Host: GitHub
- URL: https://github.com/glenmiracle18/alu-summatives
- Owner: glenmiracle18
- Created: 2023-06-20T12:02:44.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-24T21:13:39.000Z (almost 2 years ago)
- Last Synced: 2025-02-02T02:31:35.391Z (4 months ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Question 1: Shell Programming
Build an application that will take user input and build the Bachelor of Software Engineering cohort list of students. The application will take in the following information (student email, age, and student ID). Your shell script “main.sh”With your application, the user should be able to perform the following operations
Create the student record.
Save each student record in a file under the name “students-list_0333.txt”
View all students saved in the file and list them on the terminal
Delete the student in the file (By using the student ID)
Update the student record in the list (By using the student ID)
Exit the applicationSearching and sorting into a file
Create a command to select just the emails of the student. Save your command in a shell script file “select-emails.sh”
Save the output in a file “student-emails.txt”Expected files to have in question 1:
main.sh
Students-list_0333.txt
Select-emails.sh
student-emails.txt