Linux Bash (Shell) Script Calculator | Shell Scripting for Beginners | Nehra Classes



Linux Bash (Shell) Script Calculator | Shell Scripting for Beginners | Nehra Classes

Linux Bash (Shell) Script Calculator | Shell Scripting for Beginners | Nehra Classes

Bash (Shell) Calculator Script:
===============================

# !/bin/bash

# Take The Input From The User #
echo “Enter The Two Numbers For Operation: ”
read x
read y

# Provide Operation Input #
echo “Enter Your Choice Of Operation:”
echo “1. Addition”
echo “2. Subtraction”
echo “3. Multiplication”
echo “4. Division”
read ch

# Switch Case To Perform The Operation #
case $ch in
1)res=`echo $x + $y | bc`
;;
2)res=`echo $x – $y | bc`
;;
3)res=`echo $x * $y | bc`
;;
4)res=`echo “scale=2; $x / $y” | bc`
;;
esac
echo “Result : $res”

===
Thanks for watching the video. If it helped you then, please do like & share it with others as well. Feel free to post your queries & suggestions, we will be glad to answer your queries.
If you like our hard work then do subscribe to our channel & turn on the bell notification for latest updates.
===
Our Some Popular Videos:

Yum Server RHEL 7:
https://www.youtube.com/watch?v=-N09WSCNcso

DNF/Yum Server RHEL 8:
https://www.youtube.com/watch?v=cXqL5lLHM_o

Puppet Configuration:
https://www.youtube.com/watch?v=uBLMcTuaiUw&t=34s

Startis File System in RHEL 8:
https://www.youtube.com/watch?v=wkLmgeo7oxk

Concept of All RAID Levels:
https://www.youtube.com/watch?v=VRx0copTNr8

Configure RAID-0 in Linux:
https://www.youtube.com/watch?v=5tTHGbSqSKA

Configure RAID-1 in Linux:
https://www.youtube.com/watch?v=x12pMJpGGmw

Configure RAID-5 in Linux:
https://www.youtube.com/watch?v=Cj-je1RUJgo

Configure RAID-6 in Linux:
https://www.youtube.com/watch?v=qeKLlrZ5fLg

Configure RAID-10 in Linux:
https://www.youtube.com/watch?v=DLVGj_Mu1DA

Migrate LVM:
https://www.youtube.com/watch?v=B2YMDlYf-_U

LVM Snapshot:
https://www.youtube.com/watch?v=CJJwbnFuM5A
===
Contact Us:
Vikas Nehra’s Twitter Handle:πŸ‘‡
http://bit.ly/VikasNehraTwitterHandle

Registration:πŸ‘‡
http://bit.ly/NehraClassesRegForm

Twitter Handle:πŸ‘‡
http://bit.ly/NehraClassesTwiiterHandle

Facebook Page:πŸ‘‡
www.facebook.com/nehraclasses

Instagram:πŸ‘‡
https://www.instagram.com/nehraclasses/

Webpage:πŸ‘‡
http://bit.ly/NehraClassesWebpage

Telegram Channel: πŸ‘‡
https://t.me/NehraClasses

WhatsApp Us: πŸ‘‡
https://bit.ly/2Kpqp5z

Email Us:πŸ‘‡
Email: [email protected]
===
Β©COPYRIGHT. ALL RIGHTS RESERVED.

Comments are closed.