- Project Overview
- Project Steps and Commands
- Script Implementation Steps
- Troubleshooting (Common Issues and Solutions)
This project involves creating a Bash script that generates a multiplication table for a given number using both list-style and C-style for loops. The script provides an option to display the table either in ascending or descending order, and the user can choose to view a full table (from 1 to 10) or a partial table with a custom range. The project is managed with Git, including initializing a local repository, committing changes, and pushing updates to GitHub.
- Initialize a Git repository in the project directory to track changes.
- Command:
git init
- Create a shell script file named multiplication_table.sh where the Bash code will be written.
- Command:
touch multiplication-table.sh
- Change the file permissions to make the script executable.
- Command:
chmod +x multiplication-table.sh
- Use read to prompt the user to enter a number for which the multiplication table will be generated.
echo "Enter a number:"
read number
- Ask the user if they want a full multiplication table (1 to 10) or a partial one within a specific range.
echo "Do you want a full table or partial table? (Enter 'f' for full, 'p' for partial)"
read table_type
- If the user selects the full table option (f), display the multiplication table from 1 to 10 in ascending order.
if [ "$table_type" == "f" ]; then
# Generate the full multiplication table in ascending order
echo "Multiplication table for $number (Ascending):"
for i in {1..10}
do
result=$((number * i))
echo "$number x $i = $result"
done
- If the user chooses the partial option (p), prompt for a custom range (start and end numbers).
elif [ "$table_type" == "p" ]; then
# Prompt for the start and end numbers of the range
echo "Enter the start number of the range:"
read start
echo "Enter the end number of the range:"
read end
- Check if the start and end numbers form a valid range. If valid, display the multiplication table within the specified range; otherwise, show an error message.
# Validate the range
if [ $start -le $end ]; then
echo "Multiplication table for $number from $start to $end:"
for i in $(seq $start $end)
do
result=$((number * i))
echo "$number x $i = $result"
done
else
echo "Invalid range. The start number must be less than or equal to the end number."
fi
- Provide feedback if the user enters an invalid option for the table type.
echo "Invalid option. Please enter 'f' for full table or 'p' for partial table."
fi
- If you encounter a “Permission Denied” error when running the script, ensure the script has executable permissions.
- Solution: Run chmod +x multiplication_table.sh to make the script executable.
- If the user enters a non-numeric value, the script may behave unexpectedly as it expects a number for multiplication.
- Solution: Add input validation to ensure that only numbers are accepted. For example:
```sh
if ! [[ "$number" =~ ^[0-9]+$ ]]; then
echo "Invalid input. Please enter a valid number."
exit 1
fi
```
- If the user inputs a start number greater than the end number, the script will display an "Invalid range" error.
- Solution: Make sure the start number is less than or equal to the end number, as shown in the range validation code.
- If you have trouble pushing code to the GitHub repository, verify that the remote URL is correct and that you have the necessary permissions.
- Solution: Run git remote -v to check the remote URL and verify access. If there are issues, re-add the remote with the correct URL using git remote add origin <repository_url>.