0% found this document useful (0 votes)
10 views11 pages

Naseer Mohammad Linux PDF

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views11 pages

Naseer Mohammad Linux PDF

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

Project Report On

“Medicine Store”

Sri Guru Gobind Singh College Sector 26, Chandigarh


(Affiliated to Punjab University, Chandigarh)

Submitted to: Submitted by:


Ms. Vikramjeet Kaur Naseer Mohammad (16711)
SRI GURU GOBIND SINGH COLLEGE
(Co-educational, Affiliated to Panjab University, Chandigarh)
Sector-26, Chandigarh -160019. (0172) 2792754, Telefax: (0172) 2790312

Ref No: SGGS/CS/2022-23/029 Date:19-Nov-2022

To Whom It May Concern

This is to certify that Mr/Ms Naseer Mohammad of Roll No. 16711 has undertaken the

Minor/Major Project (Subject Code:MS-68) on “Medicine Store” in the session 2022-

23.

He/She has completed the Project under the guidance of Ms Vikramjeet Kaur of the PG

Department of Computer Science , SGGS College, Sector-26, Chandigarh.

Head of Department Principal


(PG Department of Computer Science)
CERTIFICATE

This is to certify that Naseer Mohammad have worked under my


supervision to prepare their project “Medicine Store”. The work
embodied in this report is original and was conducted at Sri Guru
Gobind Singh College, Chandigarh. The work has not been submitted
in part or full to this or any other university for the award of any
degree or diploma.

Ms. Vikramjeet Kaur (Project Guide)


Acknowledgment

In performing the project, I had taken the help and guideline of


our respected Prof Ms. Vikramjeet Kaur. Its place to express my
heartfelt gratitude to Ms. Vikramjeet Kaur for her valuable
guidance and timely help in the accomplishment of this project.

Naseer Mohammad (16711)


Index

S.no Topic Page no Remarks


1 Introduction to Linux Operating 1
System
2 Bash Scripting 1
5 Project Code 2
6 Screenshots Of Project 4
7 Hardware Requirements 5
8 Software Requirements 5
9 Conclusion & Future Aspects 5
10 Bibliography 6
Introduction to Linux Operating System:

Linux is a community of open-source Unix like operating systems that


are based on the Linux Kernel. It was initially released by Linus
Torvalds on September 17, 1991. It is a free and open-source
operating system and the source code can be modified and distributed
to anyone commercially or noncommercially under the GNU General
Public License.
Initially, Linux was created for personal computers and gradually it was
used in other machines like servers, mainframe computers,
supercomputers, etc. Nowadays, Linux is also used in embedded
systems like routers, automation controls, televisions, digital video
recorders, video game consoles, smartwatches, etc. The biggest
success of Linux is Android(operating system) it is based on the Linux
kernel that is running on smartphones and tablets. Due to android
Linux has the largest installed base of all general-purpose operating
systems. Linux is generally packaged in a Linux distribution.

Bash Scripting:
Bash is a command-line interpreter or Unix Shell and it is widely used
in GNU/Linux Operating System. It is written by Brian Jhan Fox. It is
used as a default login shell for most Linux distributions. Scripting is
used to automate the execution of the tasks so that humans do not
need to perform them individually. Bash scripting is a great way to
automate different types of tasks in a system. Developers can avoid
doing repetitive tasks using bash scripting.
Bash scripting supports variables, conditional statements, and loops
just like programming languages.
1
Project Code:

clear
echo ">>>>>>>> Welcome to Naseer’s Medicine Store <<<<<<<<<"
echo " "

echo "Medicine List:"

echo "-------- Medicine Name --------- Strength -------- Price ----------"


echo "1) Napa 120 mg 15 Taka "
echo "2) Fexo 120 mg 60 Taka "
echo "3) Zimax 500 mg 180 Taka "
echo "4) Moxibac 500 mg 200 Taka "
echo "5) Napa Extra 500 mg 25 Taka "
echo " "

echo "Which Medicine Do You want? (1-5)"


echo " "
read choice

if ((choice == 1))
then
echo "How many packs of napa 120mg do you want?"
read napa_q
2
price=`expr $napa_q \* 15`

elif ((choice == 2))


then
echo "How many packs of fexo 120mg do you want?"
read fexo_q
price=`expr $fexo_q \* 60`
elif ((choice == 3))
then
echo"How many packs of Zimax 500mg (Antibiotic) do you want?"
read zim_q
price=`expr $zim_q \* 180`

elif ((choice == 4))


then
echo"How many packs of Moxibac 500mg (Antibiotic) do you want?"
read mox_q
price=`expr $mox_q \* 200`

elif ((choice == 5))


then
echo"How many packs of Napa Extra 500mg do you want?"
read np_q
price=`expr $np_q \* 25`
Fi
3
echo "Thanks for Your Order"
echo " "

echo "Your total bill is: "$price


echo "Please Pay the bill and collect your medicine form the counter"
echo "Thanks for Visiting Sakib's Medicine Store"
echo "Good Bye <3

Screen Shot of Project code:

4
Hardware Requirements
• Processor: core i5
• Hard disk: 500GB
• RAM: 4GB
• System Type: 32 or 64 bit

Software Requirements
• Operating System: Windows 8
• Bash Shell Editor

Conclusion & future Aspects

The Medicine Store Project can help the customers to purchase the
medicine. I've completed this project with the help of my teachers,
class fellows.

5
Bibliography

Websites:
• www.google.com
• www.youtube.com
• www.tutorialpoint.com

Books:
• Linux Kalyani Publisher.

You might also like