New Script files

This commit is contained in:
Ravi
2018-06-20 15:37:36 +05:30
parent 909a5569d5
commit 36fe0b1ee4
10 changed files with 169 additions and 0 deletions

17
multiplication.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash
#Purpose: eval command Evaluating twice
#Version:1.0
#Created Date: Wed Jun 13 22:09:59 IST 2018
#Modified Date:
#WebSite: https://arkit.co.in
#Author: Ankam Ravi Kumar
# START #
echo "multification of X*Y"
echo "Enter X"
read X
echo "Enter Y"
read Y
echo "X*Y = $X*$Y = $[ X*Y ]"
# END #