Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Shell Scripts (Linux): 1) Write a shell script called calculate that will take three command line arguments: a mathematical operand ('+' or '-' or '*'

Shell Scripts (Linux):

1) Write a shell script called calculate that will take three command line arguments: a mathematical operand ('+' or '-' or '*' or '/') and two integers. The script must display an error if it is run without an argument. The script will then perform the mathematical operation given by the command line argument (addition, subtraction, multiplication or division) on those two numbers. The script will then print the results of the operation to the screen and exit. Hint: since * is a bash metacharacter, you will need to escape in in your script, e.g. put \* Do not use a read command, your user should put these in as command line arguments. The correct syntax should be calculate

2) Write a shell script called gotmail that will check for the existence of a mail spool file (see environment variable MAIL). If the file exists the script will print the following to the screen: "You have a mail spool file." If the file does not exist, the script will print nothing. Assume the script returns its result for the user who runs it, don't hard code the user.

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_2

Step: 3

blur-text-image_3

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

DB2 Universal Database V7.1 Application Development Certification Guide

Authors: Steve Sanyal, David Martineau, Kevin Gashyna, Michael Kyprianou

1st Edition

0130913677, 978-0130913678

More Books

Students also viewed these Databases questions

Question

(LO 3-3) How is similarity matching different from clustering?

Answered: 1 week ago