Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Linux::: Task 3 BASH scripts are nothing more than a list of commands that run in order. Let's create our first script to demonstrate.

In Linux:::

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Task 3 BASH scripts are nothing more than a list of commands that run in order. Let's create our first script to demonstrate. Use vim to create a file called hello.sh (most BASH script use the .sh extension). Add the following text to this file. hello.sh echo echo Hello Jared echo echo Here is a calendar cal INFO 1111: Linux INFO-1111: LINUX Explanation: 1. echo bash morning.sh This is my morning route 7:00 am Wake up 7:15 am Shower 7:30 am Get dressed 7:45 am Eat Breakfast 8:00 am Brush Teeth Today is: Thu 22 Oct 2020 01:51:59 PM CDT NOTE: Use the date command to get the date and time at the end. This is similar to using the cal command in task 3. INFO 1111: Linux 3 INFO-1111: LINUX Paste a screenshot of your script's code (the contents of your morning.sh file) below. Your screenshot below: INFO-1111: LINUX Task 6 Open your morning.sh script and add at least 3 comments. Paste a screenshot below demonstrating you successfully completed this task. Your screenshot below: Task 7 Let's improve the formatting of the morning.sh script. Instead of using echo to list the morning schedule, use the printf command to tab the schedule. As a reminder \t represents a tab and represents a new line when using printf. Review the previous printf assignment, your textbook or google to remember how to use printf, if needed. After applying the printf changes the script should look like the following: bash morning.sh This is my morning routine 7:00 am Wake up 7:15 am Shower 7:30 am Get dressed 7:45 am Eat Breakfast 8:00 am Brush Teeth Today is: Thu 22 Oct 2020 02:53:07 PM CDT Paste a screenshot of your script's code (the contents of your morning.sh file) below. Your screenshot below

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

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions