From 39f356497438af27ffcd78e1449d36144b0d4afb Mon Sep 17 00:00:00 2001 From: praveen Date: Thu, 26 Mar 2026 16:05:41 +0530 Subject: [PATCH 1/5] adding file --- list-files.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 list-files.sh 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 From a66d28e1afd8b8141f38901b7d8431ed6bd29443 Mon Sep 17 00:00:00 2001 From: praveenkumar <89780977+praveenpk5@users.noreply.github.com> Date: Thu, 26 Mar 2026 16:58:11 +0530 Subject: [PATCH 2/5] Update README with shell script details Developed shell scripts to optimize service configuration and improve system performance. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c6345487..43ced560 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Shell -Schell Scripts +“Developed shell scripts to optimize service configuration and improve system performance. From 783c8bba2b958a6cb4c092000c48c6102c3de24a Mon Sep 17 00:00:00 2001 From: praveenkumar <89780977+praveenpk5@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:04:29 +0530 Subject: [PATCH 3/5] Revise README description for shell scripts --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 43ced560..af647576 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # Shell -“Developed shell scripts to optimize service configuration and improve system performance. +Designed and implemented shell scripts to streamline service configuration and enhance performance. From 01222971de2c2b73c6c3dfaf5a32dc6e9a77ef67 Mon Sep 17 00:00:00 2001 From: praveen Date: Thu, 26 Mar 2026 18:00:19 +0530 Subject: [PATCH 4/5] multiplication file --- multiplication.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 multiplication.sh diff --git a/multiplication.sh b/multiplication.sh new file mode 100644 index 00000000..cd0f9e25 --- /dev/null +++ b/multiplication.sh @@ -0,0 +1,14 @@ +#!/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" \ No newline at end of file From 5ef13222636fec60f0f40b3b43577b26d26bc93f Mon Sep 17 00:00:00 2001 From: praveen Date: Thu, 26 Mar 2026 18:17:55 +0530 Subject: [PATCH 5/5] adding extra line --- multiplication.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/multiplication.sh b/multiplication.sh index cd0f9e25..bc1a482c 100644 --- a/multiplication.sh +++ b/multiplication.sh @@ -11,4 +11,5 @@ read b result=$((a * b)) # Display result -echo "Multiplication result: $result" \ No newline at end of file +echo "Multiplication result: $result" +echo "Multiplication operation completed successfully." \ No newline at end of file