3 shell script tagged "calculator"
- Shell Script To Simulate a Simple Calculator
- Shell Script to read price of an article and calculate discount
- Script to display sum of two number and to do calculations such as +, -, / etc
Shell Program to simulate a simple calculator operations such as addition and multiplication.
#!/bin/bash
# Script to read price of an article. If the price is less than 100
# then display "No discount" else give a discount of 10%. Display
# the price of article after discount
# ————————————————————————-
# Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/>
# This script is licensed under GNU GPL version 2.0 or above
# ————————————————————————-
# This script is part [...]
#!/bin/bash
# Script to display sum of two number and to do calculations such as +, -, / etc
# ————————————————————————-
# Copyright (c) 2005 nixCraft project <http://cyberciti.biz/fb/>
# This script is licensed under GNU GPL version 2.0 or above
# ————————————————————————-
# This script is part of nixCraft shell script collection (NSSC)
# Visit http://bash.cyberciti.biz/ for more information.
# ———————————————————————-
echo "**** My [...]
Viewing 1-3 of 3 shell scripts. ( see all popular tags )

