Write a shell script to calculate the exponentiation using a while loop. This script needs to take two inputs like ./script.sh a b, and output only the result of ab. Note: You need to implement the operation using loops and basic math operations, DO NOT use the exponentiation arithmetic operation provided by bash. Remember the following properties: or See the rubric for the various input values that should be handled by your code.