diff --git a/README.md b/README.md index c6345487..af647576 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Shell -Schell Scripts +Designed and implemented shell scripts to streamline service configuration and enhance performance. diff --git a/list-files.sh b/list-files.sh new file mode 100644 index 00000000..ad6fe82d --- /dev/null +++ b/list-files.sh @@ -0,0 +1,3 @@ +#!/bin/bash +echo "Listing files in the current directory:" +ls -ltr diff --git a/multiplication.sh b/multiplication.sh new file mode 100644 index 00000000..bc1a482c --- /dev/null +++ b/multiplication.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Take two numbers as input +echo "Enter first number:" +read a + +echo "Enter second number:" +read b + +# Perform multiplication +result=$((a * b)) + +# Display result +echo "Multiplication result: $result" +echo "Multiplication operation completed successfully." \ No newline at end of file