Skip to content
Open
Empty file added .gitignore
Empty file.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Shell
Schell Scripts
Shell script for leaning !!!
readME file updated
readme file update again
Binary file added abc.txt
Binary file not shown.
Binary file added addition-script.sh
Binary file not shown.
15 changes: 15 additions & 0 deletions addtion-script.sh
Original file line number Diff line number Diff line change
@@ -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"
Binary file added print.sh
Binary file not shown.
Binary file added random.sh
Binary file not shown.