diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/README.md b/README.md index c6345487..68012f69 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # Shell -Schell Scripts +Shell script for leaning !!! +readME file updated +readme file update again diff --git a/abc.txt b/abc.txt new file mode 100644 index 00000000..e5904d51 Binary files /dev/null and b/abc.txt differ diff --git a/addition-script.sh b/addition-script.sh new file mode 100644 index 00000000..01d34e3b Binary files /dev/null and b/addition-script.sh differ diff --git a/addtion-script.sh b/addtion-script.sh new file mode 100644 index 00000000..5f136d84 --- /dev/null +++ b/addtion-script.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Prompt the user for the first number +echo -n "Enter the first number: " +read num1 + +# Prompt the user for the second number +echo -n "Enter the second number: " +read num2 + +# Calculate the sum using arithmetic expansion +sum=$((num1 + num2)) + +# Display the result +echo "The sum of $num1 and $num2 is: $sum" diff --git a/print.sh b/print.sh new file mode 100644 index 00000000..1529d325 Binary files /dev/null and b/print.sh differ diff --git a/random.sh b/random.sh new file mode 100644 index 00000000..1c29b2dd Binary files /dev/null and b/random.sh differ