mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-20 15:40:31 -04:00
move shell scripts and zsh and add fav vscode themes
This commit is contained in:
parent
40077637ce
commit
e6794a8954
43 changed files with 55 additions and 34 deletions
26
shell/shell_scripts/lessons/real_numbers.sh
Executable file
26
shell/shell_scripts/lessons/real_numbers.sh
Executable file
|
@ -0,0 +1,26 @@
|
|||
#! /bin/bash
|
||||
|
||||
|
||||
a=0
|
||||
b=0
|
||||
number_of_args=$#
|
||||
|
||||
#
|
||||
# First see the sufficient cmd args
|
||||
#
|
||||
if [ $# -lt 2 ] ; then
|
||||
echo -e "Opps! I need atleast 2 command line args\n"
|
||||
echo -e "Syntax: $0: number1 number2 ... numberN\n"
|
||||
echo -e "Example:$0 5 4\n\t$0 56 66 34"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
#
|
||||
# now calculate the average of numbers given on command line as cmd args
|
||||
#
|
||||
|
||||
a=$1
|
||||
b=$2
|
||||
|
||||
c=`echo $a + $b | bc`
|
||||
echo "$a + $b = $c"
|
Loading…
Add table
Add a link
Reference in a new issue