Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Shell
Schell Scripts
Designed and implemented shell scripts to streamline service configuration and enhance performance.
3 changes: 3 additions & 0 deletions list-files.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
echo "Listing files in the current directory:"
ls -ltr
15 changes: 15 additions & 0 deletions multiplication.sh
Original file line number Diff line number Diff line change
@@ -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."